diff --git a/Assets/DoorAnim/TriggerDoorController.cs b/Assets/DoorAnim/TriggerDoorController.cs index b5db31b4..58a2101d 100644 --- a/Assets/DoorAnim/TriggerDoorController.cs +++ b/Assets/DoorAnim/TriggerDoorController.cs @@ -1,27 +1,25 @@ -using Unity.Burst.Intrinsics; using UnityEngine; public class NewMonoBehaviourScript : MonoBehaviour { [SerializeField] private Animator myDoor = null; + [SerializeField] private bool requiresLightSwitchActivation = true; - // [SerializeField] private bool doorState = false; // open state private void OnTriggerEnter(Collider other) { - if (other.CompareTag("Player")) + if (other.CompareTag("Player") && + (!requiresLightSwitchActivation || LightSwitchManager.IsLightSwitchActivated)) { - - myDoor.Play("DoorOpen", 0,0.0f); - + myDoor.Play("DoorOpen", 0, 0.0f); } } private void OnTriggerExit(Collider other) { - if (other.CompareTag("Player")) + if (other.CompareTag("Player") && + (!requiresLightSwitchActivation || LightSwitchManager.IsLightSwitchActivated)) { myDoor.Play("DoorClose", 0, 0.0f); - } } } diff --git a/Assets/QuickOutline.meta b/Assets/QuickOutline.meta new file mode 100644 index 00000000..eb5f5ba8 --- /dev/null +++ b/Assets/QuickOutline.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b585f6eb508838848a4f2f0e15d96767 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Readme.txt b/Assets/QuickOutline/Readme.txt new file mode 100644 index 00000000..183ae241 --- /dev/null +++ b/Assets/QuickOutline/Readme.txt @@ -0,0 +1,37 @@ +Quick Outline +============= + +Developed by Chris Nolet (c) 2018 + + +Instructions +------------ + +To add an outline to an object, drag-and-drop the Outline.cs +script onto the object. The outline materials will be loaded +at runtime. + +You can also add outlines programmatically with: + + var outline = gameObject.AddComponent(); + + outline.OutlineMode = Outline.Mode.OutlineAll; + outline.OutlineColor = Color.yellow; + outline.OutlineWidth = 5f; + +The outline script does a small amount of work in Awake(). +For best results, use outline.enabled to toggle the outline. +Avoid removing and re-adding the component if possible. + +For large meshes, you may also like to enable 'Precompute +Outline' in the editor. This will reduce the amount of work +performed in Awake(). + + +Troubleshooting +--------------- + +If the outline appears off-center, please try the following: + +1. Set 'Read/Write Enabled' on each model's import settings. +2. Disable 'Optimize Mesh Data' in the player settings. diff --git a/Assets/QuickOutline/Readme.txt.meta b/Assets/QuickOutline/Readme.txt.meta new file mode 100644 index 00000000..c3f61b93 --- /dev/null +++ b/Assets/QuickOutline/Readme.txt.meta @@ -0,0 +1,16 @@ +fileFormatVersion: 2 +guid: 5933bfd39d7a5b843a0ed821f85bca19 +timeCreated: 1522619008 +licenseType: Store +TextScriptImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Readme.txt + uploadId: 485303 diff --git a/Assets/QuickOutline/Resources.meta b/Assets/QuickOutline/Resources.meta new file mode 100644 index 00000000..6135a952 --- /dev/null +++ b/Assets/QuickOutline/Resources.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 70fd40674751a8042a8b9b2e8d9f915f +folderAsset: yes +timeCreated: 1522559128 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Resources/Materials.meta b/Assets/QuickOutline/Resources/Materials.meta new file mode 100644 index 00000000..2508b0f5 --- /dev/null +++ b/Assets/QuickOutline/Resources/Materials.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 80ac8e52d3c31a94babd161e86bc6b97 +folderAsset: yes +timeCreated: 1522559139 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Resources/Materials/OutlineFill.mat b/Assets/QuickOutline/Resources/Materials/OutlineFill.mat new file mode 100644 index 00000000..cb021646 --- /dev/null +++ b/Assets/QuickOutline/Resources/Materials/OutlineFill.mat @@ -0,0 +1,25 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: OutlineFill + m_Shader: {fileID: 4800000, guid: 4e76d4023d7e0411297c670f878973e2, type: 3} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: [] + m_Floats: + - _OutlineWidth: 2 + - _ZTest: 8 + m_Colors: + - _OutlineColor: {r: 1, g: 1, b: 1, a: 1} diff --git a/Assets/QuickOutline/Resources/Materials/OutlineFill.mat.meta b/Assets/QuickOutline/Resources/Materials/OutlineFill.mat.meta new file mode 100644 index 00000000..5576b451 --- /dev/null +++ b/Assets/QuickOutline/Resources/Materials/OutlineFill.mat.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 311313efa011949e98b6761d652ad13c +timeCreated: 1520576285 +licenseType: Store +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Resources/Materials/OutlineFill.mat + uploadId: 485303 diff --git a/Assets/QuickOutline/Resources/Materials/OutlineMask.mat b/Assets/QuickOutline/Resources/Materials/OutlineMask.mat new file mode 100644 index 00000000..80d49faa --- /dev/null +++ b/Assets/QuickOutline/Resources/Materials/OutlineMask.mat @@ -0,0 +1,23 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: OutlineMask + m_Shader: {fileID: 4800000, guid: 341b058cd7dee4f5cba5cc59a513619e, type: 3} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: [] + m_Floats: + - _ZTest: 8 + m_Colors: [] diff --git a/Assets/QuickOutline/Resources/Materials/OutlineMask.mat.meta b/Assets/QuickOutline/Resources/Materials/OutlineMask.mat.meta new file mode 100644 index 00000000..8ad0794d --- /dev/null +++ b/Assets/QuickOutline/Resources/Materials/OutlineMask.mat.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 106f3ff43a17d4967a2b64c7a92e49ec +timeCreated: 1520576276 +licenseType: Store +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Resources/Materials/OutlineMask.mat + uploadId: 485303 diff --git a/Assets/QuickOutline/Resources/Shaders.meta b/Assets/QuickOutline/Resources/Shaders.meta new file mode 100644 index 00000000..91118d56 --- /dev/null +++ b/Assets/QuickOutline/Resources/Shaders.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6a63caa2b0e993043a42c11f35ff2d1a +folderAsset: yes +timeCreated: 1522559134 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Resources/Shaders/OutlineFill.shader b/Assets/QuickOutline/Resources/Shaders/OutlineFill.shader new file mode 100644 index 00000000..f546473e --- /dev/null +++ b/Assets/QuickOutline/Resources/Shaders/OutlineFill.shader @@ -0,0 +1,81 @@ +// +// OutlineFill.shader +// QuickOutline +// +// Created by Chris Nolet on 2/21/18. +// Copyright © 2018 Chris Nolet. All rights reserved. +// + +Shader "Custom/Outline Fill" { + Properties { + [Enum(UnityEngine.Rendering.CompareFunction)] _ZTest("ZTest", Float) = 0 + + _OutlineColor("Outline Color", Color) = (1, 1, 1, 1) + _OutlineWidth("Outline Width", Range(0, 10)) = 2 + } + + SubShader { + Tags { + "Queue" = "Transparent+110" + "RenderType" = "Transparent" + "DisableBatching" = "True" + } + + Pass { + Name "Fill" + Cull Off + ZTest [_ZTest] + ZWrite Off + Blend SrcAlpha OneMinusSrcAlpha + ColorMask RGB + + Stencil { + Ref 1 + Comp NotEqual + } + + CGPROGRAM + #include "UnityCG.cginc" + + #pragma vertex vert + #pragma fragment frag + + struct appdata { + float4 vertex : POSITION; + float3 normal : NORMAL; + float3 smoothNormal : TEXCOORD3; + UNITY_VERTEX_INPUT_INSTANCE_ID + }; + + struct v2f { + float4 position : SV_POSITION; + fixed4 color : COLOR; + UNITY_VERTEX_OUTPUT_STEREO + }; + + uniform fixed4 _OutlineColor; + uniform float _OutlineWidth; + + v2f vert(appdata input) { + v2f output; + + UNITY_SETUP_INSTANCE_ID(input); + UNITY_INITIALIZE_VERTEX_OUTPUT_STEREO(output); + + float3 normal = any(input.smoothNormal) ? input.smoothNormal : input.normal; + float3 viewPosition = UnityObjectToViewPos(input.vertex); + float3 viewNormal = normalize(mul((float3x3)UNITY_MATRIX_IT_MV, normal)); + + output.position = UnityViewToClipPos(viewPosition + viewNormal * -viewPosition.z * _OutlineWidth / 1000.0); + output.color = _OutlineColor; + + return output; + } + + fixed4 frag(v2f input) : SV_Target { + return input.color; + } + ENDCG + } + } +} diff --git a/Assets/QuickOutline/Resources/Shaders/OutlineFill.shader.meta b/Assets/QuickOutline/Resources/Shaders/OutlineFill.shader.meta new file mode 100644 index 00000000..b982c4e8 --- /dev/null +++ b/Assets/QuickOutline/Resources/Shaders/OutlineFill.shader.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 4e76d4023d7e0411297c670f878973e2 +timeCreated: 1520575782 +licenseType: Store +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Resources/Shaders/OutlineFill.shader + uploadId: 485303 diff --git a/Assets/QuickOutline/Resources/Shaders/OutlineMask.shader b/Assets/QuickOutline/Resources/Shaders/OutlineMask.shader new file mode 100644 index 00000000..530d8c05 --- /dev/null +++ b/Assets/QuickOutline/Resources/Shaders/OutlineMask.shader @@ -0,0 +1,33 @@ +// +// OutlineMask.shader +// QuickOutline +// +// Created by Chris Nolet on 2/21/18. +// Copyright © 2018 Chris Nolet. All rights reserved. +// + +Shader "Custom/Outline Mask" { + Properties { + [Enum(UnityEngine.Rendering.CompareFunction)] _ZTest("ZTest", Float) = 0 + } + + SubShader { + Tags { + "Queue" = "Transparent+100" + "RenderType" = "Transparent" + } + + Pass { + Name "Mask" + Cull Off + ZTest [_ZTest] + ZWrite Off + ColorMask 0 + + Stencil { + Ref 1 + Pass Replace + } + } + } +} diff --git a/Assets/QuickOutline/Resources/Shaders/OutlineMask.shader.meta b/Assets/QuickOutline/Resources/Shaders/OutlineMask.shader.meta new file mode 100644 index 00000000..a20bfde5 --- /dev/null +++ b/Assets/QuickOutline/Resources/Shaders/OutlineMask.shader.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: 341b058cd7dee4f5cba5cc59a513619e +timeCreated: 1520575773 +licenseType: Store +ShaderImporter: + externalObjects: {} + defaultTextures: [] + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Resources/Shaders/OutlineMask.shader + uploadId: 485303 diff --git a/Assets/QuickOutline/Samples.meta b/Assets/QuickOutline/Samples.meta new file mode 100644 index 00000000..7d6c23d0 --- /dev/null +++ b/Assets/QuickOutline/Samples.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 932f8193e5396db4babac4756c406dee +folderAsset: yes +timeCreated: 1522559213 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Samples/Materials.meta b/Assets/QuickOutline/Samples/Materials.meta new file mode 100644 index 00000000..cb148197 --- /dev/null +++ b/Assets/QuickOutline/Samples/Materials.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2b0040b0ed7fbd64693e9195d13d25f9 +folderAsset: yes +timeCreated: 1522615600 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Samples/Materials/Plane.mat b/Assets/QuickOutline/Samples/Materials/Plane.mat new file mode 100644 index 00000000..06fa1aa0 --- /dev/null +++ b/Assets/QuickOutline/Samples/Materials/Plane.mat @@ -0,0 +1,76 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!21 &2100000 +Material: + serializedVersion: 6 + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_Name: Plane + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ShaderKeywords: + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: [] + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 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} + m_Floats: + - _BumpScale: 1 + - _Cutoff: 0.5 + - _DetailNormalMapScale: 1 + - _DstBlend: 0 + - _GlossMapScale: 1 + - _Glossiness: 0.5 + - _GlossyReflections: 1 + - _Metallic: 1 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _UVSec: 0 + - _ZWrite: 1 + m_Colors: + - _Color: {r: 0.2509804, g: 0.2509804, b: 0.5019608, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} diff --git a/Assets/QuickOutline/Samples/Materials/Plane.mat.meta b/Assets/QuickOutline/Samples/Materials/Plane.mat.meta new file mode 100644 index 00000000..64e3c3ca --- /dev/null +++ b/Assets/QuickOutline/Samples/Materials/Plane.mat.meta @@ -0,0 +1,17 @@ +fileFormatVersion: 2 +guid: f58cf65ea995c4b45be95713bdea8134 +timeCreated: 1522540975 +licenseType: Store +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Samples/Materials/Plane.mat + uploadId: 485303 diff --git a/Assets/QuickOutline/Samples/Scenes.meta b/Assets/QuickOutline/Samples/Scenes.meta new file mode 100644 index 00000000..7f5c774b --- /dev/null +++ b/Assets/QuickOutline/Samples/Scenes.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3916faa55c6a94248959031ee0ad499f +folderAsset: yes +timeCreated: 1522615614 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Samples/Scenes/QuickOutline.unity b/Assets/QuickOutline/Samples/Scenes/QuickOutline.unity new file mode 100644 index 00000000..33911b7f --- /dev/null +++ b/Assets/QuickOutline/Samples/Scenes/QuickOutline.unity @@ -0,0 +1,778 @@ +%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: 8 + 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: 10304, guid: 0000000000000000f000000000000000, type: 0} + 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: 820273532} + m_IndirectSpecularColor: {r: 0.18028383, g: 0.22571409, b: 0.30692282, a: 1} +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_GIWorkflowMode: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_TemporalCoherenceThreshold: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 1 + m_LightmapEditorSettings: + serializedVersion: 8 + m_Resolution: 2 + m_BakeResolution: 40 + m_TextureWidth: 1024 + m_TextureHeight: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 3 + m_BakeBackend: 0 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFiltering: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousColorSigma: 1 + m_PVRFilteringAtrousNormalSigma: 1 + m_PVRFilteringAtrousPositionSigma: 1 + m_LightingDataAsset: {fileID: 0} + m_ShadowMaskMode: 2 +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + 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 + accuratePlacement: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &122269556 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 122269561} + - component: {fileID: 122269560} + - component: {fileID: 122269558} + - component: {fileID: 122269557} + 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 &122269557 +AudioListener: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 122269556} + m_Enabled: 1 +--- !u!124 &122269558 +Behaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 122269556} + m_Enabled: 1 +--- !u!20 &122269560 +Camera: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 122269556} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 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_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 + m_StereoMirrorMode: 0 +--- !u!4 &122269561 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 122269556} + m_LocalRotation: {x: 0.3420201, y: 0, z: 0, w: 0.9396927} + m_LocalPosition: {x: 0, y: 3, z: -4} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 40, y: 0, z: 0} +--- !u!1 &124162633 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 124162634} + - component: {fileID: 124162638} + - component: {fileID: 124162636} + - component: {fileID: 124162635} + m_Layer: 0 + m_Name: Outline Hidden + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &124162634 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 124162633} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -2, y: 0, z: 0} + m_LocalScale: {x: 1, y: 0.5, z: 1} + m_Children: [] + m_Father: {fileID: 935070115} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &124162635 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 124162633} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 2 + outlineColor: {r: 1, g: 0.2509804, b: 0.2509804, a: 1} + outlineWidth: 6 +--- !u!23 &124162636 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 124162633} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + 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 +--- !u!33 &124162638 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 124162633} + m_Mesh: {fileID: 10206, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &796971894 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 796971895} + - component: {fileID: 796971899} + - component: {fileID: 796971897} + - component: {fileID: 796971896} + m_Layer: 0 + m_Name: Outline And Silhouette + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &796971895 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 796971894} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 2, y: 0, z: 0} + m_LocalScale: {x: 1, y: 0.5, z: 1} + m_Children: [] + m_Father: {fileID: 935070115} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &796971896 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 796971894} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 3 + outlineColor: {r: 0.2509804, g: 1, b: 1, a: 1} + outlineWidth: 6 +--- !u!23 &796971897 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 796971894} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + 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 +--- !u!33 &796971899 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 796971894} + m_Mesh: {fileID: 10206, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &820273531 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 820273533} + - component: {fileID: 820273532} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &820273532 +Light: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 820273531} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &820273533 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 820273531} + m_LocalRotation: {x: 0.40821788, y: 0.23456976, z: -0.10938167, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 50, y: 30, z: 0} +--- !u!1 &935070114 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 935070115} + m_Layer: 0 + m_Name: Outlined Objects + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &935070115 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 935070114} + 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_Children: + - {fileID: 1781008194} + - {fileID: 124162634} + - {fileID: 1346396411} + - {fileID: 796971895} + - {fileID: 1083549395} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1083549394 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1083549395} + - component: {fileID: 1083549399} + - component: {fileID: 1083549397} + - component: {fileID: 1083549396} + m_Layer: 0 + m_Name: Outline Visible + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1083549395 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1083549394} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 4, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 935070115} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1083549396 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1083549394} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 1 + outlineColor: {r: 0.2509804, g: 1, b: 0.2509804, a: 1} + outlineWidth: 6 +--- !u!23 &1083549397 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1083549394} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + 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 +--- !u!33 &1083549399 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1083549394} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1346396410 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1346396411} + - component: {fileID: 1346396415} + - component: {fileID: 1346396413} + - component: {fileID: 1346396412} + m_Layer: 0 + m_Name: Outline All + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1346396411 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1346396410} + 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_Children: [] + m_Father: {fileID: 935070115} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1346396412 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1346396410} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 0 + outlineColor: {r: 1, g: 1, b: 0.2509804, a: 1} + outlineWidth: 6 +--- !u!23 &1346396413 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1346396410} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + 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 +--- !u!33 &1346396415 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1346396410} + m_Mesh: {fileID: 10202, guid: 0000000000000000e000000000000000, type: 0} +--- !u!1 &1580478821 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1580478825} + - component: {fileID: 1580478824} + - component: {fileID: 1580478822} + m_Layer: 0 + m_Name: Plane + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!23 &1580478822 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1580478821} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 2100000, guid: f58cf65ea995c4b45be95713bdea8134, type: 2} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + 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 +--- !u!33 &1580478824 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1580478821} + m_Mesh: {fileID: 10209, guid: 0000000000000000e000000000000000, type: 0} +--- !u!4 &1580478825 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1580478821} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 10, y: 1, z: 10} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1781008193 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1781008194} + - component: {fileID: 1781008198} + - component: {fileID: 1781008196} + - component: {fileID: 1781008195} + m_Layer: 0 + m_Name: Silhouette Only + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1781008194 +Transform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1781008193} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -4, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 935070115} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &1781008195 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1781008193} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 4 + outlineColor: {r: 1, g: 1, b: 1, a: 1} + outlineWidth: 6 +--- !u!23 &1781008196 +MeshRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1781008193} + m_Enabled: 1 + m_CastShadows: 1 + m_ReceiveShadows: 1 + m_MotionVectors: 1 + m_LightProbeUsage: 1 + m_ReflectionProbeUsage: 1 + m_Materials: + - {fileID: 10303, guid: 0000000000000000f000000000000000, type: 0} + m_StaticBatchInfo: + firstSubMesh: 0 + subMeshCount: 0 + m_StaticBatchRoot: {fileID: 0} + m_ProbeAnchor: {fileID: 0} + m_LightProbeVolumeOverride: {fileID: 0} + m_ScaleInLightmap: 1 + m_PreserveUVs: 1 + m_IgnoreNormalsForChartDetection: 0 + m_ImportantGI: 0 + 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 +--- !u!33 &1781008198 +MeshFilter: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1781008193} + m_Mesh: {fileID: 10207, guid: 0000000000000000e000000000000000, type: 0} diff --git a/Assets/QuickOutline/Samples/Scenes/QuickOutline.unity.meta b/Assets/QuickOutline/Samples/Scenes/QuickOutline.unity.meta new file mode 100644 index 00000000..f1107a5c --- /dev/null +++ b/Assets/QuickOutline/Samples/Scenes/QuickOutline.unity.meta @@ -0,0 +1,16 @@ +fileFormatVersion: 2 +guid: f23712c79adc910408e872b127e825cf +timeCreated: 1522615825 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Samples/Scenes/QuickOutline.unity + uploadId: 485303 diff --git a/Assets/QuickOutline/Scripts.meta b/Assets/QuickOutline/Scripts.meta new file mode 100644 index 00000000..2f7793d8 --- /dev/null +++ b/Assets/QuickOutline/Scripts.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3ddbd65d69a9f0b48bab4fe96a1fe099 +folderAsset: yes +timeCreated: 1522559122 +licenseType: Store +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/QuickOutline/Scripts/Outline.cs b/Assets/QuickOutline/Scripts/Outline.cs new file mode 100644 index 00000000..26d87882 --- /dev/null +++ b/Assets/QuickOutline/Scripts/Outline.cs @@ -0,0 +1,309 @@ +// +// Outline.cs +// QuickOutline +// +// Created by Chris Nolet on 3/30/18. +// Copyright © 2018 Chris Nolet. All rights reserved. +// + +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; + +[DisallowMultipleComponent] + +public class Outline : MonoBehaviour { + private static HashSet registeredMeshes = new HashSet(); + + public enum Mode { + OutlineAll, + OutlineVisible, + OutlineHidden, + OutlineAndSilhouette, + SilhouetteOnly + } + + public Mode OutlineMode { + get { return outlineMode; } + set { + outlineMode = value; + needsUpdate = true; + } + } + + public Color OutlineColor { + get { return outlineColor; } + set { + outlineColor = value; + needsUpdate = true; + } + } + + public float OutlineWidth { + get { return outlineWidth; } + set { + outlineWidth = value; + needsUpdate = true; + } + } + + [Serializable] + private class ListVector3 { + public List data; + } + + [SerializeField] + private Mode outlineMode; + + [SerializeField] + private Color outlineColor = Color.white; + + [SerializeField, Range(0f, 10f)] + private float outlineWidth = 2f; + + [Header("Optional")] + + [SerializeField, Tooltip("Precompute enabled: Per-vertex calculations are performed in the editor and serialized with the object. " + + "Precompute disabled: Per-vertex calculations are performed at runtime in Awake(). This may cause a pause for large meshes.")] + private bool precomputeOutline; + + [SerializeField, HideInInspector] + private List bakeKeys = new List(); + + [SerializeField, HideInInspector] + private List bakeValues = new List(); + + private Renderer[] renderers; + private Material outlineMaskMaterial; + private Material outlineFillMaterial; + + private bool needsUpdate; + + void Awake() { + + // Cache renderers + renderers = GetComponentsInChildren(); + + // Instantiate outline materials + outlineMaskMaterial = Instantiate(Resources.Load(@"Materials/OutlineMask")); + outlineFillMaterial = Instantiate(Resources.Load(@"Materials/OutlineFill")); + + outlineMaskMaterial.name = "OutlineMask (Instance)"; + outlineFillMaterial.name = "OutlineFill (Instance)"; + + // Retrieve or generate smooth normals + LoadSmoothNormals(); + + // Apply material properties immediately + needsUpdate = true; + } + + void OnEnable() { + foreach (var renderer in renderers) { + + // Append outline shaders + var materials = renderer.sharedMaterials.ToList(); + + materials.Add(outlineMaskMaterial); + materials.Add(outlineFillMaterial); + + renderer.materials = materials.ToArray(); + } + } + + void OnValidate() { + + // Update material properties + needsUpdate = true; + + // Clear cache when baking is disabled or corrupted + if (!precomputeOutline && bakeKeys.Count != 0 || bakeKeys.Count != bakeValues.Count) { + bakeKeys.Clear(); + bakeValues.Clear(); + } + + // Generate smooth normals when baking is enabled + if (precomputeOutline && bakeKeys.Count == 0) { + Bake(); + } + } + + void Update() { + if (needsUpdate) { + needsUpdate = false; + + UpdateMaterialProperties(); + } + } + + void OnDisable() { + foreach (var renderer in renderers) { + + // Remove outline shaders + var materials = renderer.sharedMaterials.ToList(); + + materials.Remove(outlineMaskMaterial); + materials.Remove(outlineFillMaterial); + + renderer.materials = materials.ToArray(); + } + } + + void OnDestroy() { + + // Destroy material instances + Destroy(outlineMaskMaterial); + Destroy(outlineFillMaterial); + } + + void Bake() { + + // Generate smooth normals for each mesh + var bakedMeshes = new HashSet(); + + foreach (var meshFilter in GetComponentsInChildren()) { + + // Skip duplicates + if (!bakedMeshes.Add(meshFilter.sharedMesh)) { + continue; + } + + // Serialize smooth normals + var smoothNormals = SmoothNormals(meshFilter.sharedMesh); + + bakeKeys.Add(meshFilter.sharedMesh); + bakeValues.Add(new ListVector3() { data = smoothNormals }); + } + } + + void LoadSmoothNormals() { + + // Retrieve or generate smooth normals + foreach (var meshFilter in GetComponentsInChildren()) { + + // Skip if smooth normals have already been adopted + if (!registeredMeshes.Add(meshFilter.sharedMesh)) { + continue; + } + + // Retrieve or generate smooth normals + var index = bakeKeys.IndexOf(meshFilter.sharedMesh); + var smoothNormals = (index >= 0) ? bakeValues[index].data : SmoothNormals(meshFilter.sharedMesh); + + // Store smooth normals in UV3 + meshFilter.sharedMesh.SetUVs(3, smoothNormals); + + // Combine submeshes + var renderer = meshFilter.GetComponent(); + + if (renderer != null) { + CombineSubmeshes(meshFilter.sharedMesh, renderer.sharedMaterials); + } + } + + // Clear UV3 on skinned mesh renderers + foreach (var skinnedMeshRenderer in GetComponentsInChildren()) { + + // Skip if UV3 has already been reset + if (!registeredMeshes.Add(skinnedMeshRenderer.sharedMesh)) { + continue; + } + + // Clear UV3 + skinnedMeshRenderer.sharedMesh.uv4 = new Vector2[skinnedMeshRenderer.sharedMesh.vertexCount]; + + // Combine submeshes + CombineSubmeshes(skinnedMeshRenderer.sharedMesh, skinnedMeshRenderer.sharedMaterials); + } + } + + List SmoothNormals(Mesh mesh) { + + // Group vertices by location + var groups = mesh.vertices.Select((vertex, index) => new KeyValuePair(vertex, index)).GroupBy(pair => pair.Key); + + // Copy normals to a new list + var smoothNormals = new List(mesh.normals); + + // Average normals for grouped vertices + foreach (var group in groups) { + + // Skip single vertices + if (group.Count() == 1) { + continue; + } + + // Calculate the average normal + var smoothNormal = Vector3.zero; + + foreach (var pair in group) { + smoothNormal += smoothNormals[pair.Value]; + } + + smoothNormal.Normalize(); + + // Assign smooth normal to each vertex + foreach (var pair in group) { + smoothNormals[pair.Value] = smoothNormal; + } + } + + return smoothNormals; + } + + void CombineSubmeshes(Mesh mesh, Material[] materials) { + + // Skip meshes with a single submesh + if (mesh.subMeshCount == 1) { + return; + } + + // Skip if submesh count exceeds material count + if (mesh.subMeshCount > materials.Length) { + return; + } + + // Append combined submesh + mesh.subMeshCount++; + mesh.SetTriangles(mesh.triangles, mesh.subMeshCount - 1); + } + + void UpdateMaterialProperties() { + + // Apply properties according to mode + outlineFillMaterial.SetColor("_OutlineColor", outlineColor); + + switch (outlineMode) { + case Mode.OutlineAll: + outlineMaskMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.Always); + outlineFillMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.Always); + outlineFillMaterial.SetFloat("_OutlineWidth", outlineWidth); + break; + + case Mode.OutlineVisible: + outlineMaskMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.Always); + outlineFillMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.LessEqual); + outlineFillMaterial.SetFloat("_OutlineWidth", outlineWidth); + break; + + case Mode.OutlineHidden: + outlineMaskMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.Always); + outlineFillMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.Greater); + outlineFillMaterial.SetFloat("_OutlineWidth", outlineWidth); + break; + + case Mode.OutlineAndSilhouette: + outlineMaskMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.LessEqual); + outlineFillMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.Always); + outlineFillMaterial.SetFloat("_OutlineWidth", outlineWidth); + break; + + case Mode.SilhouetteOnly: + outlineMaskMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.LessEqual); + outlineFillMaterial.SetFloat("_ZTest", (float)UnityEngine.Rendering.CompareFunction.Greater); + outlineFillMaterial.SetFloat("_OutlineWidth", 0f); + break; + } + } +} diff --git a/Assets/QuickOutline/Scripts/Outline.cs.meta b/Assets/QuickOutline/Scripts/Outline.cs.meta new file mode 100644 index 00000000..3c3932c8 --- /dev/null +++ b/Assets/QuickOutline/Scripts/Outline.cs.meta @@ -0,0 +1,20 @@ +fileFormatVersion: 2 +guid: 5fea29bb7c508c244a1f805a5fd3fc4d +timeCreated: 1522369084 +licenseType: Store +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 115488 + packageName: Quick Outline + packageVersion: 1.1 + assetPath: Assets/QuickOutline/Scripts/Outline.cs + uploadId: 485303 diff --git a/Assets/Scenes/graybox.unity b/Assets/Scenes/graybox.unity index fcc2d04f..55e2741b 100644 --- a/Assets/Scenes/graybox.unity +++ b/Assets/Scenes/graybox.unity @@ -1973,6 +1973,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &86985756 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 86985753} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 86985754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &88589724 GameObject: m_ObjectHideFlags: 0 @@ -2467,6 +2478,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &110180207 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 110180204} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 110180205} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &122527500 GameObject: m_ObjectHideFlags: 0 @@ -2770,6 +2792,17 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 1465408769} m_SourcePrefab: {fileID: 100100000, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} +--- !u!114 &132736331 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 132736330} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1465408767} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &146350019 GameObject: m_ObjectHideFlags: 0 @@ -10166,7 +10199,7 @@ Canvas: m_OverridePixelPerfect: 0 m_SortingBucketNormalizedSize: 0 m_VertexColorAlwaysGammaSpace: 0 - m_AdditionalShaderChannelsFlag: 0 + m_AdditionalShaderChannelsFlag: 25 m_UpdateRectTransformForStandalone: 0 m_SortingLayerID: 0 m_SortingOrder: 0 @@ -10185,6 +10218,7 @@ RectTransform: m_Children: - {fileID: 1590930774} - {fileID: 499951972} + - {fileID: 719045085} m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} @@ -10192,6 +10226,81 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0, y: 0} +--- !u!1 &425910015 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 9108295051740277906, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + m_PrefabInstance: {fileID: 667143525} + m_PrefabAsset: {fileID: 0} +--- !u!114 &425910016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 425910015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 92652e723d3687c4eb0236067136f771, type: 3} + m_Name: + m_EditorClassIdentifier: + ceilingLights: + - {fileID: 2038585819} + - {fileID: 1412598048} + - {fileID: 1662368035} + - {fileID: 110180207} + - {fileID: 86985756} + - {fileID: 1225019587} + - {fileID: 1060206923} + - {fileID: 1363824356} + - {fileID: 1424165492} + - {fileID: 1550581892} + - {fileID: 132736331} + - {fileID: 1268074327} + - {fileID: 1528222295} + - {fileID: 1075357739} + - {fileID: 1167411139} + - {fileID: 1068283588} + - {fileID: 499063776} + interactionPrompt: {fileID: 719045086} +--- !u!65 &425910017 +BoxCollider: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 425910015} + m_Material: {fileID: 0} + m_IncludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_ExcludeLayers: + serializedVersion: 2 + m_Bits: 0 + m_LayerOverridePriority: 0 + m_IsTrigger: 1 + m_ProvidesContacts: 0 + m_Enabled: 1 + serializedVersion: 3 + m_Size: {x: 0.093794346, y: 0.09171309, z: 0.029908499} + m_Center: {x: 0.0002583663, y: -0.0012087127, z: 0.006521384} +--- !u!114 &425910019 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 425910015} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 5fea29bb7c508c244a1f805a5fd3fc4d, type: 3} + m_Name: + m_EditorClassIdentifier: + outlineMode: 1 + outlineColor: {r: 0.9811321, g: 0.8801386, b: 0, a: 1} + outlineWidth: 6 + precomputeOutline: 0 + bakeKeys: [] + bakeValues: [] --- !u!1001 &426698930 PrefabInstance: m_ObjectHideFlags: 0 @@ -11450,6 +11559,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &499063776 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 499063773} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499063774} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &499951971 GameObject: m_ObjectHideFlags: 0 @@ -14211,6 +14331,50 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: f9a1a5c1a73edba4e8a191866f65123e, type: 3} +--- !u!1 &617602340 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 617602342} + - component: {fileID: 617602341} + m_Layer: 0 + m_Name: LightSwitchManager + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &617602341 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 617602340} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 316297398a1c9ed40bcc4e54b0f25c2b, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!4 &617602342 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 617602340} + serializedVersion: 2 + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -1.6557391, y: 1.9448293, z: -26.445154} + 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!1001 &618673194 PrefabInstance: m_ObjectHideFlags: 0 @@ -14604,6 +14768,88 @@ Mesh: offset: 0 size: 0 path: +--- !u!1001 &667143525 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalScale.x + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalScale.y + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalScale.z + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalPosition.x + value: -4.778 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalPosition.y + value: 1.577 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalPosition.z + value: -20.724 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.y + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 90 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_ConstrainProportionsScale + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9108295051740277906, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 9108295051740277906, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + insertIndex: -1 + addedObject: {fileID: 425910017} + - targetCorrespondingSourceObject: {fileID: 9108295051740277906, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + insertIndex: -1 + addedObject: {fileID: 425910019} + - targetCorrespondingSourceObject: {fileID: 9108295051740277906, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + insertIndex: -1 + addedObject: {fileID: 425910016} + m_SourcePrefab: {fileID: 100100000, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} --- !u!1 &676998370 GameObject: m_ObjectHideFlags: 0 @@ -15898,6 +16144,142 @@ Mesh: offset: 0 size: 0 path: +--- !u!1 &719045084 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 719045085} + - component: {fileID: 719045087} + - component: {fileID: 719045086} + m_Layer: 5 + m_Name: InteractionLightSwitch + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &719045085 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 719045084} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1.2, y: 1.2, z: 1.2} + m_ConstrainProportionsScale: 1 + m_Children: [] + m_Father: {fileID: 425241251} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0} + m_AnchorMax: {x: 0.5, y: 0} + m_AnchoredPosition: {x: 0, y: 25} + m_SizeDelta: {x: 750, y: 50} + m_Pivot: {x: 0.5, y: 0} +--- !u!114 &719045086 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 719045084} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 36 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 1 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_TextWrappingMode: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 0 + m_ActiveFontFeatures: 6e72656b + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_EmojiFallbackSupport: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &719045087 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 719045084} + m_CullTransparentMesh: 1 --- !u!1001 &720699160 PrefabInstance: m_ObjectHideFlags: 0 @@ -23015,6 +23397,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1060206923 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1060206920} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1060206921} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1064011683 PrefabInstance: m_ObjectHideFlags: 0 @@ -23488,6 +23881,17 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 2059059015} m_SourcePrefab: {fileID: 100100000, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} +--- !u!114 &1068283588 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1068283587} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2059059013} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!43 &1071996302 Mesh: m_ObjectHideFlags: 0 @@ -23802,6 +24206,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1075357739 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1075357736} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1075357737} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!43 &1092846833 Mesh: m_ObjectHideFlags: 0 @@ -24298,6 +24713,10 @@ PrefabInstance: propertyPath: m_ConstrainProportionsScale value: 1 objectReference: {fileID: 0} + - target: {fileID: 7579228784586531570, guid: 7f39ca4cd45efb5a7aa4c32c9a36a0cd, type: 3} + propertyPath: requiresLightSwitchActivation + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8785812829593229450, guid: 7f39ca4cd45efb5a7aa4c32c9a36a0cd, type: 3} propertyPath: m_Name value: Door_small (6) @@ -25081,6 +25500,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1167411139 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1167411136} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167411137} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1167802912 PrefabInstance: m_ObjectHideFlags: 0 @@ -26289,10 +26719,18 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 3485773276523611762, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 4208926559941835536, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} propertyPath: m_Name value: Ceiling Light Bright (11) objectReference: {fileID: 0} + - target: {fileID: 4208926559941835536, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 6067516794572113890, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} propertyPath: m_Intensity value: 2 @@ -26333,6 +26771,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1225019587 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1225019583} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1225019584} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!43 &1228963881 Mesh: m_ObjectHideFlags: 0 @@ -27279,6 +27728,17 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 679053582} m_SourcePrefab: {fileID: 100100000, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} +--- !u!114 &1268074327 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1268074326} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679053580} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1275137634 PrefabInstance: m_ObjectHideFlags: 0 @@ -28865,6 +29325,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1363824356 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1363824353} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1363824354} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1365719605 PrefabInstance: m_ObjectHideFlags: 0 @@ -29783,6 +30254,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1412598048 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1412598045} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1412598046} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &1417628668 GameObject: m_ObjectHideFlags: 0 @@ -29903,6 +30385,17 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 530482109} m_SourcePrefab: {fileID: 100100000, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} +--- !u!114 &1424165492 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1424165491} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 530482107} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1425878891 PrefabInstance: m_ObjectHideFlags: 0 @@ -31930,6 +32423,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1528222295 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1528222292} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1528222293} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!43 &1529035152 Mesh: m_ObjectHideFlags: 0 @@ -32324,6 +32828,17 @@ PrefabInstance: insertIndex: -1 addedObject: {fileID: 1901491521} m_SourcePrefab: {fileID: 100100000, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} +--- !u!114 &1550581892 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1550581891} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1901491519} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1 &1553101917 GameObject: m_ObjectHideFlags: 0 @@ -35696,6 +36211,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &1662368035 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 1662368032} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1662368033} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &1664325007 PrefabInstance: m_ObjectHideFlags: 0 @@ -37733,6 +38259,10 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 7579228784586531570, guid: 7f39ca4cd45efb5a7aa4c32c9a36a0cd, type: 3} + propertyPath: requiresLightSwitchActivation + value: 0 + objectReference: {fileID: 0} - target: {fileID: 7861681358163564764, guid: 7f39ca4cd45efb5a7aa4c32c9a36a0cd, type: 3} propertyPath: m_LocalScale.z value: 4.7078843 @@ -45922,6 +46452,17 @@ MonoBehaviour: m_LightCookieSize: {x: 1, y: 1} m_LightCookieOffset: {x: 0, y: 0} m_SoftShadowQuality: 0 +--- !u!114 &2038585819 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 3126527460547383063, guid: ddfc1292959bce64f8c5c758157712f1, type: 3} + m_PrefabInstance: {fileID: 2038585816} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2038585817} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: --- !u!1001 &2040167834 PrefabInstance: m_ObjectHideFlags: 0 @@ -48728,7 +49269,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 9005220659476430818, guid: 2d3a85ecde41a8246a79669975912b74, type: 3} propertyPath: m_LocalPosition.z - value: 1.52 + value: -2.387 objectReference: {fileID: 0} - target: {fileID: 9005220659476430818, guid: 2d3a85ecde41a8246a79669975912b74, type: 3} propertyPath: m_LocalRotation.w @@ -48808,7 +49349,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8762286023885395322, guid: 9c489a8547f4d9e4387da15a4ff82c81, type: 3} propertyPath: m_LocalPosition.z - value: 1.52 + value: -2.387 objectReference: {fileID: 0} - target: {fileID: 8762286023885395322, guid: 9c489a8547f4d9e4387da15a4ff82c81, type: 3} propertyPath: m_LocalRotation.w @@ -48893,7 +49434,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8997996947095583982, guid: c5efc39a8aaf6e64ea40e9ad573e9b47, type: 3} propertyPath: m_LocalPosition.z - value: 1.52 + value: -2.387 objectReference: {fileID: 0} - target: {fileID: 8997996947095583982, guid: c5efc39a8aaf6e64ea40e9ad573e9b47, type: 3} propertyPath: m_LocalRotation.w @@ -49114,3 +49655,5 @@ SceneRoots: - {fileID: 70478617} - {fileID: 1736371139} - {fileID: 1093026611} + - {fileID: 667143525} + - {fileID: 617602342} diff --git a/Assets/ScifiOfficeLite/Prefabs/Lighting/Ceiling Lights/2D/Ceiling Light Bright.prefab b/Assets/ScifiOfficeLite/Prefabs/Lighting/Ceiling Lights/2D/Ceiling Light Bright.prefab index b4a611b8..f00c8845 100644 --- a/Assets/ScifiOfficeLite/Prefabs/Lighting/Ceiling Lights/2D/Ceiling Light Bright.prefab +++ b/Assets/ScifiOfficeLite/Prefabs/Lighting/Ceiling Lights/2D/Ceiling Light Bright.prefab @@ -1,191 +1,206 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1001 &8651513489047598199 -PrefabInstance: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - m_TransformParent: {fileID: 0} - m_Modifications: - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Intensity - value: 95.492966 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Shadows.m_Type - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_UseColorTemperature - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_BoundingSphereOverride.w - value: 5.0124846 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_BoundingSphereOverride.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_BoundingSphereOverride.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_BoundingSphereOverride.z - value: 5 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_UseBoundingSphereOverride - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Shadows.m_UseCullingMatrixOverride - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Shadows.m_CullingMatrixOverride.e00 - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Shadows.m_CullingMatrixOverride.e11 - value: 4 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Shadows.m_CullingMatrixOverride.e22 - value: 0.20202021 - objectReference: {fileID: 0} - - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Shadows.m_CullingMatrixOverride.e23 - value: -1.020202 - objectReference: {fileID: 0} - - target: {fileID: 2621582290114731352, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: useVolumetric - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 2621582290114731352, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: displayLightIntensity - value: 1200 - objectReference: {fileID: 0} - - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Range - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Intensity - value: 0.5 - objectReference: {fileID: 0} - - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Lightmapping - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Shadows.m_Type - value: 2 - objectReference: {fileID: 0} - - target: {fileID: 3194530237330675173, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Intensity - value: 23.873241 - objectReference: {fileID: 0} - - target: {fileID: 4789936396316217191, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_Name - value: Ceiling Light Bright - objectReference: {fileID: 0} - - target: {fileID: 4789936396316217191, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 6585471290104418354, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: displayLightIntensity - value: 300 - objectReference: {fileID: 0} - - target: {fileID: 6909332812720178212, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: shadowResolution - value: 512 - objectReference: {fileID: 0} - - target: {fileID: 6909332812720178212, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: volumetricShadowDimmer - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_RootOrder - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalPosition.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalPosition.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalRotation.w - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalRotation.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalRotation.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalRotation.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, - type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1001 &8651513489047598199 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 0} + m_Modifications: + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Intensity + value: 95.492966 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Shadows.m_Type + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_UseColorTemperature + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_BoundingSphereOverride.w + value: 5.0124846 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_BoundingSphereOverride.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_BoundingSphereOverride.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_BoundingSphereOverride.z + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_UseBoundingSphereOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Shadows.m_UseCullingMatrixOverride + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Shadows.m_CullingMatrixOverride.e00 + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Shadows.m_CullingMatrixOverride.e11 + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Shadows.m_CullingMatrixOverride.e22 + value: 0.20202021 + objectReference: {fileID: 0} + - target: {fileID: 1493833483808846546, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Shadows.m_CullingMatrixOverride.e23 + value: -1.020202 + objectReference: {fileID: 0} + - target: {fileID: 2621582290114731352, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: useVolumetric + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2621582290114731352, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: displayLightIntensity + value: 1200 + objectReference: {fileID: 0} + - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Range + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Intensity + value: 0.5 + objectReference: {fileID: 0} + - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Lightmapping + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3180807762072220565, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Shadows.m_Type + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3194530237330675173, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Intensity + value: 23.873241 + objectReference: {fileID: 0} + - target: {fileID: 4789936396316217191, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_Name + value: Ceiling Light Bright + objectReference: {fileID: 0} + - target: {fileID: 4789936396316217191, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6585471290104418354, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: displayLightIntensity + value: 300 + objectReference: {fileID: 0} + - target: {fileID: 6909332812720178212, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: shadowResolution + value: 512 + objectReference: {fileID: 0} + - target: {fileID: 6909332812720178212, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: volumetricShadowDimmer + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7435466893150946102, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: + - targetCorrespondingSourceObject: {fileID: 5210574598823997957, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + insertIndex: -1 + addedObject: {fileID: 9201110752110365638} + - targetCorrespondingSourceObject: {fileID: 5210574598823997957, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + insertIndex: -1 + addedObject: {fileID: 3126527460547383063} + m_SourcePrefab: {fileID: 100100000, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} +--- !u!1 &3485773276523611762 stripped +GameObject: + m_CorrespondingSourceObject: {fileID: 5210574598823997957, guid: ebb3c85b58baeef44825d9dcc11dc781, type: 3} + m_PrefabInstance: {fileID: 8651513489047598199} + m_PrefabAsset: {fileID: 0} +--- !u!114 &9201110752110365638 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3485773276523611762} + 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!114 &3126527460547383063 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3485773276523611762} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 7fce27b3dcc14274785fcc6728e16203, type: 3} + m_Name: + m_EditorClassIdentifier: + flashInterval: 0.5 diff --git a/Assets/Scripts.meta b/Assets/Scripts.meta new file mode 100644 index 00000000..a17c1a3d --- /dev/null +++ b/Assets/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6950c6601276ff419c022757e6d6038 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/CeilingLightController.cs b/Assets/Scripts/CeilingLightController.cs new file mode 100644 index 00000000..4ab25be2 --- /dev/null +++ b/Assets/Scripts/CeilingLightController.cs @@ -0,0 +1,61 @@ +using UnityEngine; +using System.Collections; + +public class CeilingLightController : MonoBehaviour +{ + private Light ceilingLight; + private Coroutine fadeCoroutine; + private bool isFading = true; + private Color defaultColor; + private float defaultIntensity; + public float fadeDuration = 0.5f; + + void Start() + { + ceilingLight = GetComponent(); + defaultColor = ceilingLight.color; + defaultIntensity = ceilingLight.intensity; + ceilingLight.color = Color.red; + ceilingLight.intensity = 0; + fadeCoroutine = StartCoroutine(FadeInOut()); + } + + IEnumerator FadeInOut() + { + while (isFading) + { + float timer = 0f; + while (timer < fadeDuration) + { + timer += Time.deltaTime; + float t = timer / fadeDuration; + ceilingLight.intensity = Mathf.Lerp(0, defaultIntensity, t); + yield return null; + } + + ceilingLight.intensity = defaultIntensity; + timer = 0f; + + while (timer < fadeDuration) + { + timer += Time.deltaTime; + float t = timer / fadeDuration; + ceilingLight.intensity = Mathf.Lerp(defaultIntensity, 0, t); + yield return null; + } + ceilingLight.intensity = 0; + } + } + + public void StopFading() + { + if (fadeCoroutine != null) + { + StopCoroutine(fadeCoroutine); + fadeCoroutine = null; + } + isFading = false; + ceilingLight.color = defaultColor; + ceilingLight.intensity = defaultIntensity; + } +} diff --git a/Assets/Scripts/CeilingLightController.cs.meta b/Assets/Scripts/CeilingLightController.cs.meta new file mode 100644 index 00000000..cdfdb480 --- /dev/null +++ b/Assets/Scripts/CeilingLightController.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 7fce27b3dcc14274785fcc6728e16203 \ No newline at end of file diff --git a/Assets/Scripts/LightSwitchInteraction.cs b/Assets/Scripts/LightSwitchInteraction.cs new file mode 100644 index 00000000..d510c4ae --- /dev/null +++ b/Assets/Scripts/LightSwitchInteraction.cs @@ -0,0 +1,75 @@ +using UnityEngine; +using UnityEngine.UI; +using TMPro; + +public class LightSwitchInteraction : MonoBehaviour +{ + public CeilingLightController[] ceilingLights; + public TMP_Text interactionPrompt; + + private bool isLightsFixed = false; + private Outline outline; + + void Awake() + { + outline = GetComponent(); + if (outline != null) + { + outline.enabled = true; + } + if (interactionPrompt != null) + { + interactionPrompt.enabled = false; + } + } + + void Update() + { + if (!isLightsFixed) + { + Ray ray = Camera.main.ScreenPointToRay(new Vector3(Screen.width / 2, Screen.height / 2, 0)); + if (Physics.Raycast(ray, out RaycastHit hit, 10f)) + { + if (hit.collider.gameObject == gameObject) + { + if (interactionPrompt != null) + { + interactionPrompt.text = "Left click to turn emergency power on"; + interactionPrompt.enabled = true; + } + if (Input.GetMouseButtonDown(0)) + { + foreach (CeilingLightController light in ceilingLights) + { + light.StopFading(); + } + LightSwitchManager.IsLightSwitchActivated = true; + isLightsFixed = true; + if (outline != null) + { + outline.enabled = false; + } + if (interactionPrompt != null) + { + interactionPrompt.enabled = false; + } + } + } + else + { + if (interactionPrompt != null) + { + interactionPrompt.enabled = false; + } + } + } + else + { + if (interactionPrompt != null) + { + interactionPrompt.enabled = false; + } + } + } + } +} diff --git a/Assets/Scripts/LightSwitchInteraction.cs.meta b/Assets/Scripts/LightSwitchInteraction.cs.meta new file mode 100644 index 00000000..9d6d0c0a --- /dev/null +++ b/Assets/Scripts/LightSwitchInteraction.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 92652e723d3687c4eb0236067136f771 \ No newline at end of file diff --git a/Assets/Scripts/LightSwitchManager.cs b/Assets/Scripts/LightSwitchManager.cs new file mode 100644 index 00000000..7a21cc41 --- /dev/null +++ b/Assets/Scripts/LightSwitchManager.cs @@ -0,0 +1,11 @@ +using UnityEngine; + +public class LightSwitchManager : MonoBehaviour +{ + public static bool IsLightSwitchActivated = false; + + public void ActivateSwitch() + { + IsLightSwitchActivated = true; + } +} diff --git a/Assets/Scripts/LightSwitchManager.cs.meta b/Assets/Scripts/LightSwitchManager.cs.meta new file mode 100644 index 00000000..6d9a5727 --- /dev/null +++ b/Assets/Scripts/LightSwitchManager.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: 316297398a1c9ed40bcc4e54b0f25c2b \ No newline at end of file diff --git a/Assets/Settings/DefaultVolumeProfile.asset b/Assets/Settings/DefaultVolumeProfile.asset index 6fb18220..9e4bbfdd 100644 --- a/Assets/Settings/DefaultVolumeProfile.asset +++ b/Assets/Settings/DefaultVolumeProfile.asset @@ -342,6 +342,9 @@ MonoBehaviour: skyOcclusionIntensityMultiplier: m_OverrideState: 1 m_Value: 1 + worldOffset: + m_OverrideState: 1 + m_Value: {x: 0, y: 0, z: 0} --- !u!114 &-1216621516061285780 MonoBehaviour: m_ObjectHideFlags: 3 @@ -462,8 +465,6 @@ MonoBehaviour: - {fileID: -6288072647309666549} - {fileID: 7518938298396184218} - {fileID: -1410297666881709256} - - {fileID: -7750755424749557576} - - {fileID: -5139089513906902183} --- !u!114 &853819529557874667 MonoBehaviour: m_ObjectHideFlags: 3 diff --git a/Assets/SocketsAndSwitches.meta b/Assets/SocketsAndSwitches.meta new file mode 100644 index 00000000..a49187de --- /dev/null +++ b/Assets/SocketsAndSwitches.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 99173c697c5d848f79866d61b308a3f1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Boxx-Games Assets - README.pdf b/Assets/SocketsAndSwitches/Boxx-Games Assets - README.pdf new file mode 100644 index 00000000..e1c88bbc Binary files /dev/null and b/Assets/SocketsAndSwitches/Boxx-Games Assets - README.pdf differ diff --git a/Assets/SocketsAndSwitches/Boxx-Games Assets - README.pdf.meta b/Assets/SocketsAndSwitches/Boxx-Games Assets - README.pdf.meta new file mode 100644 index 00000000..65bad44c --- /dev/null +++ b/Assets/SocketsAndSwitches/Boxx-Games Assets - README.pdf.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: cef6e29a55a3946c48f8a9e90feaf577 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Boxx-Games Assets - README.pdf + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material.meta b/Assets/SocketsAndSwitches/Material.meta new file mode 100644 index 00000000..c8405ad1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d8e07244b24e4e8a911ae7bb50fbf1e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024.meta b/Assets/SocketsAndSwitches/Material/1024x1024.meta new file mode 100644 index 00000000..b727caa0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1ad9761615d404bab8202d51dee76bd1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Black.meta new file mode 100644 index 00000000..99c8edc5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60f02a294677349bab57c177f824b576 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Black/LightSwitchesMaterial.mat new file mode 100644 index 00000000..ce110f0c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-502266736662089194 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 02eeeb3bf59b3473fa57750734de3568, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 1a7eee44c8adf42bebf55bfae54bbcaa, type: 3} + 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: 2800000, guid: 2cfab068a93f541aaa0b2d9aaad3b0ec, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Black/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..d295e517 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f6c6c5ab9e5e945e0b5646f449f7a42c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Black/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket02Material.mat new file mode 100644 index 00000000..495da35d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 6849b1431589b4da2b9615114deb3290, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 1e72afbdee1b1499c880bd9d9b732e1e, type: 3} + 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: 2800000, guid: e97c664a146ac4fcb92cbc3e288df332, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3697081429148197239 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket02Material.mat.meta new file mode 100644 index 00000000..c419eb39 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6b76a291e873340b5a120b8a7565d94e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket03Material.mat new file mode 100644 index 00000000..a7a32e67 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 1ed85fe98e3d34ae4a2e2fec72726dab, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: c7e3fac474012448897155ed03e7be45, type: 3} + 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: 2800000, guid: 2dadc10417ec04fbba99b822edd553d1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &664729070521887333 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket03Material.mat.meta new file mode 100644 index 00000000..8364f27d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ac6f4bb5c07ea4ba8a7d219040c0894c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Black/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase01Material.mat new file mode 100644 index 00000000..9798aba8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1800927077018915169 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: daf6e6afb527d4c34b746b67e53c1cca, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 466b64951021d49a6a55aa22dbfc2098, type: 3} + 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: 2800000, guid: 7f80bc93df3504db2aa781629f3c26e5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..43725eed --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b32d1895a1d25488ebeaccefc703b8c1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase02Material.mat new file mode 100644 index 00000000..4debed72 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7561663318943856217 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 98bf978bfa3c24fd8a93a73d27599224, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: db13a600410584b3da4744e1905badb8, type: 3} + 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: 2800000, guid: 87cddb3857a6542199d59f49b8493f58, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..e3271c9b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6825bf50b49cd4a5997a35bf7ade450b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt.meta new file mode 100644 index 00000000..7c3cde02 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7fb7bbd4d050945c58a30361a34d6a0d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..08fe218c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-227286501317319407 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: fe85090e747574659b96086925059c69, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 41a2eb46b21654993960b61bd1dd1369, type: 3} + 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: fe85090e747574659b96086925059c69, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 6dcaad354c06f4b9ebff0defcbf99651, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..8bbd402c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 411a31c6b2bb24b4ea763f7a7441ff97 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket02Material.mat new file mode 100644 index 00000000..da2a0570 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: becd314702d9a4867be51951e5eef9be, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 96b6ef2d73c084113adcdf9b52df392f, type: 3} + 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: 2800000, guid: a5a1aeaeba6324a7687f0e9b55fecd91, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6911527376777808727 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..30282e6b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 5b5ea15c9ad9c4c98be08c9af5a663ed +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket03Material.mat new file mode 100644 index 00000000..67cfad04 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8118461007242654655 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 402bd2c6cff564671933bd0725b8b5b5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 231243fb6a90c488ca8bce1a39d14a1f, type: 3} + 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: 2800000, guid: 46c3d82ae403b4f029dcc9d39d7663ee, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..b36ceb21 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0baf92dcc3d9047d7a4d880fe75983f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..fb44a8a0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 7c257272f94954c08990ee74f89c9923, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 88a72dcd86a744ad9986b08a9a06bff6, type: 3} + 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: 7c257272f94954c08990ee74f89c9923, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: c5286ed387bfe43a7825b956b59b140a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4929927946965050095 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..c11cd334 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4de7a3925223a424d97397b306c96813 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..d88f3fde --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1879665226208086759 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 29fd8810d51674faf9d1982cadea4759, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 033122ab38de440468661ddcef300f76, type: 3} + 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: 2800000, guid: 09f1f79d5a5a44c8fb93ec19241c2320, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..c9383eb8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c3a953651e6564da0ae958e86a053e71 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation.meta new file mode 100644 index 00000000..2e2b42c0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e2982bcabcbfc46758f437ef8ab62bc5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black.meta new file mode 100644 index 00000000..8a502f87 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b92a0aa097cce4c2f9ac49fa9e94465b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase01Material.mat new file mode 100644 index 00000000..ae9d9fc2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e813a95f9a0574d37b360eaf2110f910, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: f054cbc290d06412c83c4fd4ea9e7e72, type: 3} + 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: 2800000, guid: 0e9a3bbfbf9064bf69436f2a976e71dd, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &693650154279531662 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..2c323429 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fd25edf38b00542c7a4abe5ce45dbd32 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase02Material.mat new file mode 100644 index 00000000..af040968 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6445548180639018992 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: a18295abc9bde4e9e99fa0713d12d46b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: a87ab972b93ce4f9b96fa5e4ec803e18, type: 3} + 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: 2800000, guid: 012a7e0685c3d46ccbcccb5cca04ae7e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..33dc906b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e131a20b4ca2e4f4f8c7252ce220979e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt.meta new file mode 100644 index 00000000..46ff9121 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b5d24d50a86fe4759b3d4420b5645d6d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..a9a818eb --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 6ee475d7a6ce74546918d7e6b9bb2370, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 10313903e69594f47946ffe8de98f10b, type: 3} + 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: 2800000, guid: 7bdbbf7e7de72482ca2b9ff3f6c75562, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8721753407153059638 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..1fc03451 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1417efeaa71f043edae632ad0f17a5f5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..948fd719 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-622976839893525627 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 0f86f733cb32f49aa821415f3a17a463, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 70ff82b2d656c45619d1ac5abe27e5ce, type: 3} + 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: 2800000, guid: dc70da2cc39cf4a65a204242b51fcf5f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..6decea91 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c0832bfdf1785468ba15676faa67ed59 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White.meta new file mode 100644 index 00000000..bc542581 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 76473a73a4fc64921939e3b39e7ed312 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase01Material.mat new file mode 100644 index 00000000..5c702d8f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3235971150983947882 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: fa33059d3112541b3b388260698b0ab6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 99998c4a1fc7a4e0197c0400df05b595, type: 3} + 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: 2800000, guid: 43fd1045b6256494dbc3bb3503b9375a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..fd152e9c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b7f85c4fc2c484e8981dea8a1fc55cb2 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase02Material.mat new file mode 100644 index 00000000..e8838ed0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 34b082a0e9a2f47859115f79639c2c44, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 9ef8390cc8b4c4735a887f42e7ad050b, type: 3} + 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: 2800000, guid: 4512ebe2156034f99b557ab6382bdd7b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2982904702022503827 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..81443579 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: cba82eebe61ac4c27bd1bc26d8d8618c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt.meta new file mode 100644 index 00000000..1b9f81f6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 582bf2bc62bce4cd385562f90e0a9e21 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..44507032 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4816288219111010720 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 1c3a88d41537e425ca87387168cda40e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2df799c82d6b445f388ed4d93622850f, type: 3} + 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: 2800000, guid: c41d8072c12784e679623d60d63b4c2d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..cce10b88 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0560e34a1c4a640c0860103dc8d945a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..56952079 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 4e09afb38ee44471690663be45b3a4d0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 7654662248f7747de92160a56b0d2fcd, type: 3} + 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: 2800000, guid: 11a82cf4d3983414682200eafedccf84, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &9118457599157183098 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..9c30a0d3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 68c13f287ca1b459ea1264700739f5f3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/Rotation/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White.meta b/Assets/SocketsAndSwitches/Material/1024x1024/White.meta new file mode 100644 index 00000000..d2f93cad --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ec65d9df290694194a90959c99bf1989 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/1024x1024/White/LightSwitchesMaterial.mat new file mode 100644 index 00000000..7797c9bf --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3420271618584158829 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: ce9b532319f7f44fc8c0a7af306aa5f3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 1b3d3e3f24a9e42e38cfb2be0cadc14f, type: 3} + 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: 2800000, guid: 59058986dee2140ffafe46cdd767f240, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/White/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..5c20c586 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ba985c42183264c6cacd15a95c0f5d94 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/White/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket02Material.mat new file mode 100644 index 00000000..bca62516 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2488520772804743444 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 14dd5bad78bfe46e687a60c68bd84e6b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 51de1bcbda47040e2aa4b012a3d07207, type: 3} + 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: 2800000, guid: 6ec56feaa67934149bcb641632c7659c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket02Material.mat.meta new file mode 100644 index 00000000..e854dac7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b0e6f04f2f76e497d83adeb88c717fa8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/White/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket03Material.mat new file mode 100644 index 00000000..b5855a72 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 8a49e4b25d5334dfd84e68bb455cd3b7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 0ebf5063a40a54dc49bf75e60d07d429, type: 3} + 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: 2800000, guid: 5e258e5354dbf4d5687cc8efc1f6ae3f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3940405958773124194 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket03Material.mat.meta new file mode 100644 index 00000000..03b03f94 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 572212430d9694176af79e136c76516f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/White/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase01Material.mat new file mode 100644 index 00000000..c748c9d4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 1e12061e151504f1685eb9d63ce9e94b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 9c01888b23c624503a091fea74bf7639, type: 3} + 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: 2800000, guid: 7356794344a7347c38751f1334da67bf, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5633127560660904376 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..a955908f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 37884395d836c48e1a3bd3d2f43fa46b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase02Material.mat new file mode 100644 index 00000000..66a35684 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4549481325389613847 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: a363a9e018c714dd0a516cea35e05574, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 7101b893aa0d344919b5ff9d682e3ab5, type: 3} + 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: 2800000, guid: 36693a8d543f14500909ec4eb4fa5135, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..e23a058c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: bbb40d86dead747b7a7597638f6ceccc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt.meta new file mode 100644 index 00000000..91f58e01 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 446aeef125f6449f18dd352dc4a0f062 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..de627021 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4820468068397762686 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: f3aa8b59fdc08449c9a23c339980598a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: bdf705f82627e417495f13aa7ef58856, type: 3} + 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: 2800000, guid: 266fd4fee50734f78a3998a52c973065, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..f952f004 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 58ac8772f544e41958dc93958dff7baf +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket02Material.mat new file mode 100644 index 00000000..5bcce7e6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 88c1b4e8be19d488a8729d87ca5c5b26, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 87ae077f3fc4f4a8d8cea097bdcf07d6, type: 3} + 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: 2800000, guid: e0c1d5ba9829542c6bfb047b7297e685, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7262969302325578268 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..51a834ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7ea5b15ca969e4528b86e97cf727589c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket03Material.mat new file mode 100644 index 00000000..afd0f666 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 54a1c3d3430a542fbafc515704ed1c65, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 9e74da7e2598744f8a75b3b7c8e8006f, type: 3} + 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: 2800000, guid: c2846c70797304cee943f8e0db31c401, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2074780283455905617 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..35cd30aa --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 78c7f43cc88694148a04ec8f243316ce +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..e8a2d6c3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: a3dee028a60ea42af846112ff9be7a24, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 1f028d047b5e043b785eba045941b590, type: 3} + 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: 2800000, guid: 3748ac8e9ad3e4bf5a21bf50cead93f0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6128767283697152242 +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 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..d8ce8dd1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0758209dd69d54d54b3f63614b5b03ff +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..3ce84ac5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6791870189658053441 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: d7ba6baa0bcc34f02896f465a51e3c5a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 52f081d487f5941ef81a3cab4b028409, type: 3} + 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: 2800000, guid: 7d1c1967bbd274ea38ff17cc275c7f4f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..86a00757 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 74487d3eff5514ed4851049337226b43 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/1024x1024/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128.meta b/Assets/SocketsAndSwitches/Material/128x128.meta new file mode 100644 index 00000000..c121b4f3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b74f7a0283533433dab6e36851cca527 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black.meta b/Assets/SocketsAndSwitches/Material/128x128/Black.meta new file mode 100644 index 00000000..2ab5936e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 76446d631bd7740c09cef17c9e0b312e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/128x128/Black/LightSwitchesMaterial.mat new file mode 100644 index 00000000..c0efd887 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%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: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 3f2ed5d01143b421bbe0cd19b48b50b2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: f01bd95160a274c79a4dbc6c4629c44e, type: 3} + 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: 2800000, guid: c561e7f73d3ed4ca889f8be8a7d582b2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3650523128245295313 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/Black/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..f2f2ded1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0874845345d6840fd882ef4e0335d5fc +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/Black/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket02Material.mat new file mode 100644 index 00000000..1bcf67ad --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: d40f1532afe9d4039b2e4f88be2d6c37, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 1660969d3fa464c12bd68ea7b3435cf9, type: 3} + 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: 2800000, guid: def3013c278704073ad62844a23993ff, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5502632613640784560 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket02Material.mat.meta new file mode 100644 index 00000000..15ffbf05 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ba00a004aba3843fba09841bacc8e1d8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/Black/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket03Material.mat new file mode 100644 index 00000000..edf661fa --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 1ac30fa430b5947e3b4d0481d5c76606, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3461eddbac2924befa1542deefc04a75, type: 3} + 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: 2800000, guid: b3b6ca02ea224409eaa215b776284bb8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6938718940840452198 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket03Material.mat.meta new file mode 100644 index 00000000..87bad185 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2592f3c6a7e124f6cbecc87687aa6943 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/Black/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase01Material.mat new file mode 100644 index 00000000..acc9dd84 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: bd5859b61627b4695a88a428e8aaafeb, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: f780716734b2d4b34a7820b0b50f10f7, type: 3} + 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: 2800000, guid: bf8e094cc2dae437aa7a7970cb8a5d9c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5909678603665533210 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..690293e7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3cb2bb7e6707248cabb84a940ef1e940 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase02Material.mat new file mode 100644 index 00000000..86a49a8b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6018138578365245580 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: b1a461fd82de44488aef5d0f44ded9c9, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 39464ec2f1d31411ca1f2eaa48cc775f, type: 3} + 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: 2800000, guid: 4381701cad06542bebfaac41b7748057, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..ec670c5e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 561760cd5eacd44ffa879d0b7c5030dd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt.meta new file mode 100644 index 00000000..fff0a2ab --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b875fc35c8e8f426e873489f473b908b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..d481a43e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%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: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 98cf075c74fe741ada5645c8bb74caa3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2d21856b314344be9a54598625fb7fc3, type: 3} + 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: 2800000, guid: 0e344cb345a184d49a98aa74f934a60e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2337191575710058606 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..8cadf400 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 171ea37c4214c45b6b29f595f47ea987 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/BlackDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket02Material.mat new file mode 100644 index 00000000..87f7eda3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e88aba5b48a9841dcb1edc930b04f5a7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 40571c88ba5ea42fb9b2c4c59193178c, type: 3} + 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: 2800000, guid: e5b3c42a7e793443c9dbdb0854201686, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3779639054072696794 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..db6c53dd --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b5a65c51624594c35bda21e82ee11323 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket03Material.mat new file mode 100644 index 00000000..0b27faa9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1052947954791730594 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: c5b1e48ca70384786b0120669fa11327, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: c545c976a58dc4f8986449b906a804b4, type: 3} + 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: 2800000, guid: 6c5eaf0f01a43493abf4e2fdb23f156f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..b3b81739 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3e12b7834fc214b988580a3a464072f0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/BlackDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..329b93e4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-633839331753466450 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e9133b5b81a784e4da57ee72d2d2877c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: b9f7efe761ddc4f62810692369fb2e58, type: 3} + 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: 2800000, guid: 5f0f8cbdfcea941979f8dfd2396fcfda, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..36a50b65 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fb4d634daf69948e3ad27de1705dc016 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..18e820aa --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: d4cb422e9358f4a37ba5b8258efd7518, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2aa93fe464e1949a09bb987fe53a755b, type: 3} + 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: 2800000, guid: 7b03c60ac587e46bfb2e56bd1e1ad597, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2062683752936147539 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..e2f62b90 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 60364320ecc17440eb7427f707eb76a7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White.meta b/Assets/SocketsAndSwitches/Material/128x128/White.meta new file mode 100644 index 00000000..862c410e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7404f8043e654874a4991cfb1601be9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/128x128/White/LightSwitchesMaterial.mat new file mode 100644 index 00000000..56191dd2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1904205522140569090 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 07c136f62132f428aa8b7d11e5c544a0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 8a56349332aa0489e9acfa868c2ed209, type: 3} + 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: 2800000, guid: 35f0490c4c8dc41eb98378a312ff4a84, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/White/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..adfac73f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a2aa58bf0271148f093576f2f99f3dd5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/White/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/White/Socket02Material.mat new file mode 100644 index 00000000..9b12f036 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 46b235f678a5a4ccd80790631a992035, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: bfd2ac20513e3446da9a689315132ea9, type: 3} + 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: 2800000, guid: 54fd0ba61834a4b18bc2e08ed06d6d6c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7567847943628443236 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/White/Socket02Material.mat.meta new file mode 100644 index 00000000..6c018ca7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9c64a8ff7beaf47dca3f9212c07e7697 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/White/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/128x128/White/Socket03Material.mat new file mode 100644 index 00000000..77d05389 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: ecda629f5d5384ad5813b58644388409, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 23f1a97b790eb4c44a4c5a8d39a6c782, type: 3} + 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: 2800000, guid: fabdebc3f074a4c01a2d0d824322043f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7192241203609383219 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/White/Socket03Material.mat.meta new file mode 100644 index 00000000..cc106ef0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: db2d3d24334d5465880408d77b3db8e6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/White/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase01Material.mat new file mode 100644 index 00000000..b941e7a2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8776530651587513029 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: ca6a1ef9d68b7439c8a8481ca837d31a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: b68b59bdf66604b25838e9bce39cb1bd, type: 3} + 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: 2800000, guid: 0f99c6a9952514f69bf7169b8e94bb06, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..49e156f4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fa910a9e96e7447d686101b4c3a40c93 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase02Material.mat new file mode 100644 index 00000000..2ac61298 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: f7dadccf7d8df495cbd49fd1397fbea2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 6487f25769cf94938badb5717647d6a8, type: 3} + 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: 2800000, guid: 401679a11dc5149e4b1db645316a7b0f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8171771038198027112 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..a25aaee2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 612148c362d624bf8bb86e23db7ef546 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt.meta new file mode 100644 index 00000000..633f8b2a --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ee6bf596492574a62a19849bac834c3b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..f027912f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6437328557811052132 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 6f9163b5254974765bcb4caba6df1a0e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2709aea2f6e30425dabe1463ea06db7d, type: 3} + 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: 2800000, guid: 4add4be9137c2467bb447ea737f37d6a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..b5ec8497 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 172c43af131f04736841dee08d20ebc7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket02Material.mat new file mode 100644 index 00000000..a4d1e9e6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 550661276392d4e74857dd70ccba3815, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 008b967307ab6458791ba32077ab7111, type: 3} + 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: 2800000, guid: fd3422c7d866a476b820c33bb0bc06da, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4385449673257728820 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..56cfdb1d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 22753da51ac114cc49965661309b95b7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket03Material.mat new file mode 100644 index 00000000..701f0d25 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: b78248aeb6fec4e77b9feea9fbc36c53, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2dc27bfb959f64342b72408adcd20c4d, type: 3} + 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: 2800000, guid: a8ae3f6b9421d468da9f3e3a58d7abeb, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4576493097233697199 +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 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..8d566f22 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c705f1790bcef43f6b49b4616346aab7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..6fc04f05 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8510436330802012112 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e7be49156aa044ae6a155740317905da, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3b80bd1ed92124ababf9930d9f6df4ce, type: 3} + 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: 2800000, guid: ce05e02e08ef94f989ec1bb7a1c1b266, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..c385e0b3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: eee31faaf5ecf46e7acdd815c8d48797 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..cc380561 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5114176204390183724 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: cd09256f225c44bfcb539d1b126577da, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 0fc7453f59cd346378d08864815307f7, type: 3} + 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: 2800000, guid: 44113c898317443a883dd5bdb3733971, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..d7d078f2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 13002dc41b2444180981eb6e2543bf8f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/128x128/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048.meta b/Assets/SocketsAndSwitches/Material/2048x2048.meta new file mode 100644 index 00000000..0a24495a --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d67b55bff38b44b6183a2da47c957b58 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Black.meta new file mode 100644 index 00000000..1a584c62 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df1cb46bfffcb44c19dc248ab04a8a6b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/InsideMaterial.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Black/InsideMaterial.mat new file mode 100644 index 00000000..f071331c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/InsideMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2138703673527000251 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: InsideMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 3a6e032a0484349f6b8007be01d62bc4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 1c889e66bf8594295a64737c4bd34a2e, type: 3} + 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: 2800000, guid: 7f64a2d6be98b4d559edfe48a24fd230, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/InsideMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Black/InsideMaterial.mat.meta new file mode 100644 index 00000000..a940d372 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/InsideMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a6534f48eb2f844f2bc5eeb488d1cc0f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Black/InsideMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket02Material.mat new file mode 100644 index 00000000..5099df7d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 720afb6f784a349cba00fd407ed6d1fb, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 42c3d9f46c4f64604881c8c632c96130, type: 3} + 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: 2800000, guid: 3445f2d69798b4ca1b6da63112d190ff, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3835344017178757215 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket02Material.mat.meta new file mode 100644 index 00000000..88731a68 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1f9d691951cbe42cebd850485b6a6264 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket03Material.mat new file mode 100644 index 00000000..c3ae40fd --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: dbf35c59e476c46f7962c029f4fc9ace, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: f11dc593c01d8448298d4a4a2c485220, type: 3} + 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: 2800000, guid: dc30d3622266f47169ed707388212b5a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7670392858806424143 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket03Material.mat.meta new file mode 100644 index 00000000..c99f30e6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: d79e4abebad4041789b088998ae1c2e1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Black/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase01Material.mat new file mode 100644 index 00000000..6a0c26f5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1830927787843875329 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: ea148c90dc03a42e3a6eb57327cf822d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 9a474797d6ead4a3faaf4f67dbb494dc, type: 3} + 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: 2800000, guid: f889ef49376e24f5db394e30b2598223, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..9e0f6926 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3b6cd8b8c36454a18a50c10bf2d05707 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase02Material.mat new file mode 100644 index 00000000..7f8a9a41 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4220714661577235443 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 4d4d44f37ce1d4de58970966745ffbcd, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: fc7ad94062b37442892459e7d2a270e8, type: 3} + 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: 2800000, guid: f984d24e1047847e2a75d87c501c4097, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..cd191b1a --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: d90c4ce794ee44d29be5951e9345170a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt.meta new file mode 100644 index 00000000..a6a95ff9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c10a3356058284e5f8129bd06b83eb80 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/InsideMaterial.mat b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/InsideMaterial.mat new file mode 100644 index 00000000..5984ce50 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/InsideMaterial.mat @@ -0,0 +1,141 @@ +%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: InsideMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: ff0b85be8cbf8440cb922103f241b683, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 788531870f07d495db7bc7610a4e4db7, type: 3} + 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: ff0b85be8cbf8440cb922103f241b683, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: 489c85dcfcfd5428fa64ec219826d618, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7903356536392601152 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/InsideMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/InsideMaterial.mat.meta new file mode 100644 index 00000000..cccb4bda --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/InsideMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/InsideMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket02Material.mat new file mode 100644 index 00000000..b55c3a8c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7536694582853996809 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 2af9f38df741b4e10bde772f726ad6d3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: da77742d3a8204f38a6e1786f2bc8035, type: 3} + 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: 2800000, guid: 5767a8dbbf9b446c7a77f4d5f9ad737c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..228b6333 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6f753b8d6f0fe40728f43bd79e1c427c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket03Material.mat new file mode 100644 index 00000000..772b92b9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: ea4aa92c1270e402b8db38ef0d8dd07b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 6cbab4d22e498435e96b9668536c5fc7, type: 3} + 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: 2800000, guid: 2b78e4c45554b43e5802c87cd5546305, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &372031839999157352 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..44dcbd36 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 90c1cf332475c4c78bdbaec8510db520 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..e40b7c1d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5866275390517670644 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 47463cdacadcc4f49b8ceacaea555087, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 7f80b602ec69c466fb34c2bd84d88515, type: 3} + 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: 47463cdacadcc4f49b8ceacaea555087, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 2800000, guid: ecd22c595bf304a5ba07010aad93ccf4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..0bbc6dfa --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 242a1ccd067cc4a04a216340028b4d95 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..bf4acebb --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 17a5233a631fa4c69a0d85b1038b7683, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 18f4c1fbbb7b64d0cafd5e91319a2073, type: 3} + 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: 2800000, guid: 7a93a52333f434c37a45b6ac92a0d86a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5709155591264100318 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..2c139768 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3314014b0eb6c4c9ca7e3607d1e0d0a3 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation.meta new file mode 100644 index 00000000..f76c488b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6eba7d8f7b6d34c9da1207e06d8ad45f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black.meta new file mode 100644 index 00000000..d4a99a2f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e83f73c3a20474f048beec95503d7219 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase01Material.mat new file mode 100644 index 00000000..dfe0b1c1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e28b714c970714ddabdf8d6c92a10f96, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: d16884ad903544d5185101d8de663ed5, type: 3} + 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: 2800000, guid: d09108efd923e491bac5cf60d84c18df, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6894890044535087292 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..34eab332 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c97b86ef416634108b56be695cc2e5d0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase02Material.mat new file mode 100644 index 00000000..03d482a8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 5178d63d70c1941109293ba5222fd9fe, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: d7750dd1b01fd47608317774e72be2bd, type: 3} + 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: 2800000, guid: 351c61257389a47fdb210008469304c3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &9184895807775912890 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..c476051a --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8bb7ce128d6d74077a4b6e7e757e5009 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt.meta new file mode 100644 index 00000000..9c7a7ca7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc20546d4252843ac958e57a9d697f27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..a42d1be2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2494984667726555146 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 699f8471527f943c79a4fa3f37a2c73c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 547d958ac07ac4ddd91109d23893ec21, type: 3} + 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: 2800000, guid: 0789c4f4cccf7404ca125cab36fd8ec5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..aaae97ad --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7ab6d3fa8fd52423aa46a13850b1e75b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..d9acea79 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6879289754697966267 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: bfb151c40bb51468f9e1b6b1ec715bf3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: cae85215ca9854d268347cfc19b1ab9a, type: 3} + 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: 2800000, guid: 5641ddd56bffc44769d006e26b323f6c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..c04a6d3b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 22548815860ac466096f1820ac080c56 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White.meta new file mode 100644 index 00000000..6c5f1682 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5d1a440be6ed941fdbf68afe9c37599a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase01Material.mat new file mode 100644 index 00000000..4e2422a8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8734566900235046938 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 1955d6f6e33f74fe6b716058e69b2a0f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 792806bb76f7b405bbdb8200c54e58e8, type: 3} + 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: 2800000, guid: 02c0c0020aad54f31b57b203219ce9ab, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..6fdef98e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e06e25942d056446eb6b009e04908125 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase02Material.mat new file mode 100644 index 00000000..ab2cc9c7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e00fe2d532fdf4b9798343323e3295c3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 5640fcb8210f14bf0a31bfcc561c2c1f, type: 3} + 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: 2800000, guid: f3a677f80e0bc4aca8a87271105c4a52, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5547661793449648430 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..c30057b4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 84c62870130314aab93e3c0140d039a8 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt.meta new file mode 100644 index 00000000..cb508d60 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 75f64561ee6974ca1a9778740e387926 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..f6129b0c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 59162758f13ae4748bb006804692723f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: f59295ba6e3d64cbe8d62a5570e7e745, type: 3} + 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: 2800000, guid: cf12eb9c465de4e4786561a7f7f906cf, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1382931053389707774 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..b806946f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6ce10d89068124af3944e22b5243712f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..b1e5cdeb --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 58de0c6732ce64f7889097b879550d36, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 87859d73db41b4a62a3e454ef71b7924, type: 3} + 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: 2800000, guid: c87129f2bb9d84eefa2bcd84297cde65, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6709344676960151983 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..8ca212dd --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e75191f67a6ac47b28c01f7fc84d2a8b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/Rotation/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White.meta b/Assets/SocketsAndSwitches/Material/2048x2048/White.meta new file mode 100644 index 00000000..f46a4e26 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 08e2eba2458734a609733b868555204d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/InsideMaterial.mat b/Assets/SocketsAndSwitches/Material/2048x2048/White/InsideMaterial.mat new file mode 100644 index 00000000..8c3a8f81 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/InsideMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-4443350642319946611 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: InsideMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e0065890ec2bd4946a2ba8f77e334ef3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: ebac8944832084690b08f53c7cfe4b21, type: 3} + 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: 2800000, guid: b96458521f5744ed08b707eae78567ea, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/InsideMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/White/InsideMaterial.mat.meta new file mode 100644 index 00000000..b3403d17 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/InsideMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 05fee7f37582e475fa4fc9a50738a4d1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/White/InsideMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket02Material.mat new file mode 100644 index 00000000..c97c9df7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6608475144570724291 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 48143626b277843b98d67036d8b4679f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: de66bde9d4cd24e7bbb1d5936a6e7774, type: 3} + 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: 2800000, guid: 7526f9bfcc69d474cb33e6c277620f2d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket02Material.mat.meta new file mode 100644 index 00000000..d7aa1f9b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 5ebfbe070662e48e4a35a696cda0a013 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/White/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket03Material.mat new file mode 100644 index 00000000..d03c9001 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2959667485600158076 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 2375be287a838410da24ec6341d48477, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: d7412a530071747f28be96b69063b1ea, type: 3} + 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: 2800000, guid: 8915092191fbb4f5fadbff2cecb60475, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket03Material.mat.meta new file mode 100644 index 00000000..6ab3a3ac --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 594cfd587ab9f41eeb0ffd14ed0439af +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/White/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase01Material.mat new file mode 100644 index 00000000..98c9496f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: a59eb574800d64fdd98013accc90bd44, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 58cf1a4a62ed94eb0a8e9d9e3c8bbf3c, type: 3} + 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: 2800000, guid: be8b229fc86794d8d85eedfc596e6a79, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3038064943785418090 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..ea972ed5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: de2e72f3f68fe4158b3e40e992b6c9e7 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase02Material.mat new file mode 100644 index 00000000..f349528d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-257568512801732610 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: f80261e883bb6443bb2e7050f921f23a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: ab6b6c125dd4a4cf3b6161f972cbbbcd, type: 3} + 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: 2800000, guid: d41b35e6761954f538edcffe0f11dbdb, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..e75ef8bb --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8943380cb53f1471a8b00a24f7b202db +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt.meta new file mode 100644 index 00000000..254f0fab --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f8fc85cc0e45c49608b8a69df816b745 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/InsideMaterial.mat b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/InsideMaterial.mat new file mode 100644 index 00000000..71f1b9fa --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/InsideMaterial.mat @@ -0,0 +1,141 @@ +%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: InsideMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: a1fdb042de97d4ebaa171e9ecaab994a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 87f6e62f0720f4ff79d9e2af2d64c858, type: 3} + 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: 2800000, guid: c086745a78d2c479b9c6c490b40f5a92, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &4861367396127955115 +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 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/InsideMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/InsideMaterial.mat.meta new file mode 100644 index 00000000..600029a6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/InsideMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4e755ed40593748b08091b681ce4b93f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/InsideMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket02Material.mat new file mode 100644 index 00000000..bb8c880e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5949659722531355903 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 5a2e9377ffe6a43a1b6bc576003b2d8e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 0c7edc8ed0c00452b97c697665db95ed, type: 3} + 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: 2800000, guid: ad8e3a2fe529944558e4685b5a7eec01, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..cd406b58 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 51a6bd3267e6d49458d0611dc9508170 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket03Material.mat new file mode 100644 index 00000000..85666c66 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7276426845203197696 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 83bd99a29780d4835a521d06d8fbfc79, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 943ecca0ec9694a358248615aa9f8efa, type: 3} + 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: 2800000, guid: fc0250b0c4de44329abb806357b45aee, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..e8af8496 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fda19c87e95b645b4a0329dce4ca6fcb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..5c35a326 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2021176239763412174 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: b5e9a4cd4205d4ab9bf6ddde26b6aca3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3f71a6ac276d44af88821e5f4abd9776, type: 3} + 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: 2800000, guid: 9f2a15c1dd1fb48dbbfd7dfbaca061c0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..a0227b0e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 4d317c181f73d493f8b059fce68728b0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..135d2266 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2308051651936459782 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 84eaeed65116549158230fba434bff76, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: d976f0d315ff44dc6ab7f9960ebb1fdf, type: 3} + 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: 2800000, guid: 17e3dd065e6f64ba5b6e69db64ddfd2c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..5b19a2a1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0199da919af3a41a69113400be55ca76 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/2048x2048/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256.meta b/Assets/SocketsAndSwitches/Material/256x256.meta new file mode 100644 index 00000000..34bab38e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c346ec890999438b83b314be36b0615 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black.meta b/Assets/SocketsAndSwitches/Material/256x256/Black.meta new file mode 100644 index 00000000..43c2badc --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1afcac6c76ab4a0ebd14144a2c97008 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/256x256/Black/LightSwitchesMaterial.mat new file mode 100644 index 00000000..98d7d0c1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%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: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e886a19944b954c2bba8f49b934af7ab, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: bf68bbbd901d14a1db671bd08ae73f31, type: 3} + 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: 2800000, guid: 0432ac67767834a3fb9be5db9e998a68, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3213808537405736412 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/Black/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..34e7d55d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 11cb1f92dc94d4e8bb373e7763bc3ad4 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/Black/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket02Material.mat new file mode 100644 index 00000000..b6822e45 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3833904434351304097 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: de20ef2d55cf940a6aff882192e35e1b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: d2c0095503b8440bda525429e87aeafb, type: 3} + 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: 2800000, guid: f7481e6958aae4477bec3e36d6bcf8a6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket02Material.mat.meta new file mode 100644 index 00000000..fc499068 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a45feed7816c74a75aff7de21440162c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/Black/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket03Material.mat new file mode 100644 index 00000000..2b47c5d7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5651781669618306184 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: f1c1cd99414f0419d9f7237b2a951b0c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3932f0d5678e54ee98af9d857142a21e, type: 3} + 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: 2800000, guid: bad6230d5a3dd497a997019847b6487d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket03Material.mat.meta new file mode 100644 index 00000000..d6abbf6f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ca22132a633d54d868b0adc66c0f23aa +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/Black/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase01Material.mat new file mode 100644 index 00000000..dbb45412 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: c7e8c2eeffb77439384c5df6809f1b2b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 137442f4fb49243db8c49b2b8cd3eec0, type: 3} + 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: 2800000, guid: 551e33106afbf4897a59f2883546faa4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5800193924683136452 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..f23b3410 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: e6d2579522ab14bd695cc970307168f5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase02Material.mat new file mode 100644 index 00000000..a96794df --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 329aca0938bca436f920020ce69b5cd4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 582c42487cc89429492d0ef28ebdab2a, type: 3} + 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: 2800000, guid: c0b20b508f6744c5fa2b0962dca5cde7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8605545383948032659 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..55bc4262 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 45a167b46564441a9aa859d9c169188b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt.meta new file mode 100644 index 00000000..fef3d82e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4dac1b4045354956b3bce2a81a6141e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..b60c0cdc --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%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: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 86b2be9c8d2e24cd1afd5ee501e832d4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 713152d0af6ba4d6e98007d6d3951244, type: 3} + 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: 2800000, guid: 33c7b11989c104e208bc47206be34751, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8314248477874431739 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..c2a3e08e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 8c4e87e6dae314f9f9e9c75df25ba814 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/BlackDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket02Material.mat new file mode 100644 index 00000000..4b04040c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7240481352584469438 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: ba2f04293d6a14a408c137868479325f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: b34cccd9b07a243a189ae925e2f9a59b, type: 3} + 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: 2800000, guid: c23a54ae16f9c4a948b20d6815c2756d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..76717792 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7b8c93891cc2b4338bab86d061c75197 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket03Material.mat new file mode 100644 index 00000000..c5a7b5e2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: aeaf71b21a7e04a44ab8800bf1a986c6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: fe851ed987c454cae8a9acfe5a2e5eca, type: 3} + 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: 2800000, guid: eac0b4d0b7d194f5db9d2906095a5081, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3327674862364214388 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..0a2d8fc1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: be8afd34af67f4bdea5860e9f2caa316 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/BlackDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..a42e1a71 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 29e5d95d2c6f24f22bbe720684b5e116, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3a062ffaf51ca4f288731932b9930f04, type: 3} + 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: 2800000, guid: ea6f83841413b493ca11cbe643ababc6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &5334174109950933557 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..8a26f71e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a205b4723e2834568ab96b67c4956b1e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..479c8a13 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: bc89f28fd2b6c4c6598636efe6a36113, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e0d0bdb4e874348bdac74320276f8e75, type: 3} + 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: 2800000, guid: 707a460008e914ca48081989e0b1f9f6, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1460271782997527800 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..e6db0ba4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9ae825eb7226640fba1776e73c097770 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White.meta b/Assets/SocketsAndSwitches/Material/256x256/White.meta new file mode 100644 index 00000000..5f90bd48 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8dd4e95835e224afca13794a190025f9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/256x256/White/LightSwitchesMaterial.mat new file mode 100644 index 00000000..f33c9740 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-980953613822116152 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 674f1aa1ec6624651aa10259dd0a011e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: b6c6dd2e0eb2f4c93ae654b36aba956b, type: 3} + 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: 2800000, guid: ccd2ff41ce60e4219bd2687be3501531, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/White/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..ed169181 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: ccd5a9add73c348d5bb24dbe6e791487 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/White/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/White/Socket02Material.mat new file mode 100644 index 00000000..b3fab645 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e22346a2fca14403f9a171dc8d28ed1e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 4d15ed4a369944391a31fdcf7e3c9634, type: 3} + 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: 2800000, guid: a7f6112e3894a424eaea2ec71f74104c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &7768507766357373019 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/White/Socket02Material.mat.meta new file mode 100644 index 00000000..96a9a22e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 191ae825771b9468daa8dfc20f554676 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/White/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/256x256/White/Socket03Material.mat new file mode 100644 index 00000000..86bff252 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 70b2bf1d67f684611bf8f2abd3ec7d7d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 7d73b9ecba33b435eacae62aab504554, type: 3} + 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: 2800000, guid: 78e1897897b2c44f295108cc4f4fa5e4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &1645296323945702469 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/White/Socket03Material.mat.meta new file mode 100644 index 00000000..eec41e38 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c617accfc4e2446288b0b4e7d694b075 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/White/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase01Material.mat new file mode 100644 index 00000000..a6750410 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1050383738538971433 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e954752ae30254c74a3d3bcb6b749b24, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: cb4de7b3b2e3b4eab937e69ec26ecc32, type: 3} + 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: 2800000, guid: a503fb58c5add460389b64f71fcf6c6e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..ab6786d8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 630d2b45b234849fd9d2e7c6ca382071 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase02Material.mat new file mode 100644 index 00000000..c50f1c53 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-685180363462812653 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: b85fc0d8c61834160902df68b48fc321, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 3e47a9d7aff574bdb8f803a6d5999eb3, type: 3} + 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: 2800000, guid: 16c855ccf23a64997ba83b9c4c2acbb0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..820a4767 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 480404fa0c13b46e8b920993fc114fc9 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt.meta new file mode 100644 index 00000000..48a2b2d8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ed04cd30a441b4c02aa90abe09edf83d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..45eafc3a --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%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: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 9409891d1ca0f47879ca7b95d1af328c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: b8cd270c46ba248b6869548aa8fcedae, type: 3} + 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: 2800000, guid: d23a0956119b24ab18b9bcd1a7255bea, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2544466545807828074 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..1d333dff --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a0bb7c4cb17864eaea784ce7d8781e62 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket02Material.mat new file mode 100644 index 00000000..5399f250 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8237265265246525253 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 01a9797e21c7143fba391f6d74a3b389, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 55ec1356018e04ace901340a485a94f5, type: 3} + 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: 2800000, guid: 7d1d6db773eb640ec947a093e6509b44, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..9a890f33 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a288ce99ca872458f8d244350ba39d94 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket03Material.mat new file mode 100644 index 00000000..43e53220 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2794195130024833221 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: df1a630aff0ed42f5b0a9345dd49e3bf, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: dcd27594e93f146aaa4719715f4d1226, type: 3} + 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: 2800000, guid: 63cd4d756b58f4109b685e3790e0e3c4, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..9e3fb072 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9726b6d70b9c247b9a34274dea6f7db6 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..a944d3bf --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8163109137116827904 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: c6189e6c756df4e2da743d8dcfcf5ff5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 6fbb6071df5fd41779f60a531bc5d2d5, type: 3} + 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: 2800000, guid: 7007d26c019cd446a928d0e99103e0ba, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..46a4a172 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c47baae40a26c4979948683f6cbc04b5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..d47e05f9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 625a1a028b22546f3be5d180c26ddd92, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 717743d557fba48cc82dff5f9f62b05e, type: 3} + 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: 2800000, guid: 45161768e826840a3878125228fa651a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3634534104664122154 +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 diff --git a/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..e59020d9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: dcccedbaf387d4c8fb6c5ac1a2f1fb1d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/256x256/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512.meta b/Assets/SocketsAndSwitches/Material/512x512.meta new file mode 100644 index 00000000..0823cf6f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3f2aa05edd8c4736a98dbed1dc9c222 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black.meta b/Assets/SocketsAndSwitches/Material/512x512/Black.meta new file mode 100644 index 00000000..1bfbb015 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 43a035d6e982140fabb11ffce2d08873 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/512x512/Black/LightSwitchesMaterial.mat new file mode 100644 index 00000000..51cc1814 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%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: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: cceb9f24c18e64d6495601483d37a9d0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 9133649ec43234e9a9a8a86ab798d197, type: 3} + 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: 2800000, guid: f0eb8fc16954f4a409e1743aa6b7dab5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8195741014439201280 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Black/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..27f4d451 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 80f96c09964f64dc5851e8cd0281a103 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Black/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket02Material.mat new file mode 100644 index 00000000..c6aebe5d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5881650925569115058 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 5d57cb7011cd2482f93e4351fbecc16f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 717d6274faf924a2d85277ae400ebb34, type: 3} + 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: 2800000, guid: 52bd1778ec24b47c08c5694ac636b766, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket02Material.mat.meta new file mode 100644 index 00000000..fe9df6fc --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: c3674f44874ff4e4e94ee30cfd6c2e66 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Black/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket03Material.mat new file mode 100644 index 00000000..a87e5579 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1669704332931278571 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 12cbbe2ca0b734f9f92265ae121a7b5b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: ae70fff7c53df42a098fb32855477905, type: 3} + 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: 2800000, guid: 06b36fadc0bcf4480be7822cfefed1ed, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket03Material.mat.meta new file mode 100644 index 00000000..91a0b29e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 6a5b1b05758a44169a45a78efde6574c +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Black/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase01Material.mat new file mode 100644 index 00000000..08d706d4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-200876868470549110 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 705cd1ccad4f54a95b5d589c76af3f08, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: f1698c303d255493a9edae362d7129a1, type: 3} + 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: 2800000, guid: be965b6220b5745cb903885f742e5f25, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..8243ac7c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: abafd54c12f434dc1972ca48c6cd2d69 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase02Material.mat new file mode 100644 index 00000000..f66a1c8a --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2303563694485590545 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: f496aae3f9b034da1b52f5d8132a3912, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 84cc9d071381f4055a4fca68b25f1ffa, type: 3} + 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: 2800000, guid: 9b0adcd06d77c4627b7d617bb0597431, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..bc2f165e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b11a72df83eaf4a2182fba453bc1f8ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt.meta new file mode 100644 index 00000000..54d3cfb2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1fcb15b55c274bf98ecc7746d91fcb3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..8600bb26 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6941907965449556024 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: a8ecf70eef07f40a69b4f8adde36b5c5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2f0d55f37d397458cac38bca0edf7245, type: 3} + 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: 2800000, guid: 1206aabe272ca4fa3b559f16f9d306ba, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..cf3c5876 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 3812772ff29e74cc6b87c747436f003e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/BlackDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket02Material.mat new file mode 100644 index 00000000..4cbf33bb --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: fe17c55343d96446a9136697147f6ede, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: fc3bc7ab51c7a48d3ab6e62fdcb4b6b4, type: 3} + 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: 2800000, guid: 0ac36ab8e49ef422eb6d281f08f6ba27, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &6375667758763923670 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..97a6ba1d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2cf795f7e6c234e359a861e903345597 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket03Material.mat new file mode 100644 index 00000000..8d784d5e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6068730827644964447 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 74a91a6383973426280f388f97af6ed3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 5b32d64349b7340fcb15601cfe6c5c75, type: 3} + 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: 2800000, guid: 80c63efef5d344e02920e5a6556d395f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..a21cca66 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 1bf00bf2adb314283aa54b99391c3699 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/BlackDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..4f3862bd --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-7575519169448968767 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: b475c8c10452a4ed8894cfa2f5f819b8, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 2939bb39ba2f84bdba62705060fd7386, type: 3} + 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: 2800000, guid: 39229142b92e5417ba2daa331969544a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..e9d5123f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 965ba76d7f8fa4e9491047d349da3f08 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..a31d84a0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: f941b99af96b74ff68be8dda1da7252b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 8f73330de4182462787bc3563d187852, type: 3} + 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: 2800000, guid: 6b6b9f6025f994d3a9545a6fc85fb641, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &822217192498693922 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..f0b81f4e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fa109d9a3939a40a5ab4dac714273671 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation.meta new file mode 100644 index 00000000..7595247b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: cc663d15b4c6c450998b271e8942d1ef +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black.meta new file mode 100644 index 00000000..93dca61e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10d160a1f9f114e9a8b46457e83839de +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase01Material.mat new file mode 100644 index 00000000..83c52572 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: edfacf86393dc4d18a273875ab80a935, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: bb1b006cc914c458fbe36f213d0b530d, type: 3} + 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: 2800000, guid: 3c46ca6c0601848a1ad7b20389911905, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8685653606382935106 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase01Material.mat.meta new file mode 100644 index 00000000..f0e7ccc0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 0c5662e80457e49f889be9b39d1d9875 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase02Material.mat new file mode 100644 index 00000000..a32e209c --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-5849111814753798789 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 66e1a2bd3ac794ea79d6af7738b779e5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: cd2aceb90d2bd478dab8caa2cdce6cf5, type: 3} + 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: 2800000, guid: 2b1109db5788d4e0f89924666d220831, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase02Material.mat.meta new file mode 100644 index 00000000..d6c146e6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 75ef68a36921847abb4b36ab1d1a6fa0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/Black/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt.meta new file mode 100644 index 00000000..7dcfdb67 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0303154aaa10a4f19a198160f314cccc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase01Material.mat new file mode 100644 index 00000000..9c374f93 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: b8dcf6ad9b89544bdaf257da09c348ac, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e38c95858a8314c7eb8aa30af1a69caa, type: 3} + 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: 2800000, guid: 077b063de5d4443558eb292044cd9f3e, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2474039257879604841 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..30e42692 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: fa7d7972fbfcc4166b451d067074a060 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase02Material.mat new file mode 100644 index 00000000..23c8074f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3172685091798424359 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: fcd8a5ace50e74e108a70912635dbaab, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 37281cad588f7473ba8df1e928c12042, type: 3} + 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: 2800000, guid: 78b09baaef17c4026b01cea59f628b87, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..3eaea6dd --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 01128155a7dad4c63b7a6cb90ebaa1cd +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/BlackDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/White.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White.meta new file mode 100644 index 00000000..9e5f675f --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 96b142da28d3b40a091c8cc2e51a62b5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase01Material.mat new file mode 100644 index 00000000..6fb56924 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3571714703843210913 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: eeffe1997e2be4bee979e3bbc1f06bfd, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 542fb4d8dbbed4f30996f766ef866748, type: 3} + 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: 2800000, guid: 8b711d4a1ef5f4f84b9d88ededf358e0, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..881375e0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: f275ca41a84bf438a8136e1cbf98f14e +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase02Material.mat new file mode 100644 index 00000000..49a63363 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-3108193382323410275 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 912b53840bb7644edbd966a3f16d3253, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: aadb831ddac29494390c69a486a99d0d, type: 3} + 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: 2800000, guid: c5a4e873e45474cceb1d8ddea48cc6db, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..cadf028d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: debfa7d6dbec641169a9dbb0d913a47a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt.meta new file mode 100644 index 00000000..624a342d --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 891a641a8da694a18b5ae10adb2418f5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..aedfd9f6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-2404900606573687225 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 64f65c388c2be4948b785b1eb4b8ec6b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 259d96e009b2641fe98d950c17a7ae3e, type: 3} + 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: 2800000, guid: da707aa4d4caa4141979ae17d8b76dca, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..582b34e0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 66b1e7d7fde2740b5b1d8ebd885150e0 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..7706ccc0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 6cda748a9532846b1a921f0dd38b4dd9, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 0c169ba0effdb4e608c4fa63124e8b42, type: 3} + 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: 2800000, guid: 8442391cfa11140f1b52a849b8967f7a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &531547176803085463 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..eec54ed7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 78499dc52d9e040a68a187181385d556 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/Rotation/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White.meta b/Assets/SocketsAndSwitches/Material/512x512/White.meta new file mode 100644 index 00000000..0a68eb8b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c39d1c28db3274a71931f33cd5ac8bea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/512x512/White/LightSwitchesMaterial.mat new file mode 100644 index 00000000..c5a1079e --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-1169303292120929489 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: b5141182b4e43422086e165832b5731d, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 41a3ae19d6f2643ff928b35a499c13dc, type: 3} + 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: 2800000, guid: 88cef4add2bbb4d25a61671519358a5a, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/White/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..b4e22326 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 9d1e97e3a48064f06a55f1305125406a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/White/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/White/Socket02Material.mat new file mode 100644 index 00000000..c3fca44b --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: e16b9747500774282852a719e8e33b66, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: dc43b6161349b472c9f7c2ef8de53024, type: 3} + 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: 2800000, guid: 8852bf89ea2e24eccbba820a4e058210, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &717871809828917145 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/White/Socket02Material.mat.meta new file mode 100644 index 00000000..92d5db70 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 233db594df4bc4703b9c665607436789 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/White/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/512x512/White/Socket03Material.mat new file mode 100644 index 00000000..8cf777a2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/Socket03Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6305682866341987020 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 61e86b05025584ff092c620e04dfb280, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: c784be1e2f6714ccbad4096ddc5f788a, type: 3} + 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: 2800000, guid: f129751538def4b68a70ebed3a3d53e5, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/White/Socket03Material.mat.meta new file mode 100644 index 00000000..859d5f38 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: b0f81d6f71dbd44ccbfed18b426c473b +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/White/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase01Material.mat new file mode 100644 index 00000000..836f5943 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 204f20cc7a8524d78b0ce3d094e47dd1, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: e2e17bb4e7d5143718fabf8fe06de149, type: 3} + 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: 2800000, guid: 88c36acbb11de44a7a385eccd9c4c22f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2831091940882599725 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase01Material.mat.meta new file mode 100644 index 00000000..927515b9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 75d409f1f73714c3bb5d0e7510981ef5 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/White/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase02Material.mat new file mode 100644 index 00000000..fd028fd4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: c39a008ead1524fb8892ca659fe8fbff, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 0256abd82e6294206892556937a0f471, type: 3} + 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: 2800000, guid: 23236bbb42d244c4e8a779b1dcad66ea, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8898589788218267969 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase02Material.mat.meta new file mode 100644 index 00000000..89df6a23 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/White/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 7d5cab5d56de944fa8cf52f68257bc6f +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/White/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt.meta b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt.meta new file mode 100644 index 00000000..de9105c8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f4aa21acbaafc4d87bf73c78db209816 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/LightSwitchesMaterial.mat b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/LightSwitchesMaterial.mat new file mode 100644 index 00000000..36203aa2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/LightSwitchesMaterial.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-151025246403003911 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: LightSwitchesMaterial + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 3e2343a39927642068ec136c466db86c, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 6423485bf1cfa4c9695467cc8340519d, type: 3} + 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: 2800000, guid: c30f0ee0443974cdd954a96b735859a7, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/LightSwitchesMaterial.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/LightSwitchesMaterial.mat.meta new file mode 100644 index 00000000..5ec09a26 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/LightSwitchesMaterial.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: a21637e0daec2428e951dd9d07377a57 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/LightSwitchesMaterial.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket02Material.mat new file mode 100644 index 00000000..5b555018 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket02Material.mat @@ -0,0 +1,141 @@ +%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: Socket02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 3712e1aa9235c42b192b9327b6cfebbc, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: a998bc1c472bb4ed9b33fa94554747b5, type: 3} + 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: 2800000, guid: 81668fde7987e4a28b39ea20624e26e3, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &8898337382910304229 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket02Material.mat.meta new file mode 100644 index 00000000..269f60e2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 462057eab82ca46b384bd409d66c1d41 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket03Material.mat b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket03Material.mat new file mode 100644 index 00000000..8609bd5a --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket03Material.mat @@ -0,0 +1,141 @@ +%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: Socket03Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 66a63d468917f4e50a5a8f9afa913806, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 514e7c9af6ad245698c479240e701be7, type: 3} + 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: 2800000, guid: feef25dd29c8f478b9ded834fbc2122b, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &249153558877271810 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket03Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket03Material.mat.meta new file mode 100644 index 00000000..4cc8eb09 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket03Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 2b619f6b94d1247e2916f509ebda51ac +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/Socket03Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase01Material.mat b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase01Material.mat new file mode 100644 index 00000000..1ff6daf2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase01Material.mat @@ -0,0 +1,141 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8852188494811935787 +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 +--- !u!21 &2100000 +Material: + serializedVersion: 8 + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_Name: SocketCase01Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 1569a129287574e8e9d3bef239d54860, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 1b92ad6f0c6f043d481ba00d5bb632ff, type: 3} + 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: 2800000, guid: bc5ec69b370ee4ea989112728f6c005f, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase01Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase01Material.mat.meta new file mode 100644 index 00000000..c7c0fae3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase01Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 99d3cac42fa734c17a01077a36df900d +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase01Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase02Material.mat b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase02Material.mat new file mode 100644 index 00000000..9e4bb3ac --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase02Material.mat @@ -0,0 +1,141 @@ +%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: SocketCase02Material + m_Shader: {fileID: 4800000, guid: 933532a4fcc9baf4fa0491de14d08ed7, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: + - _METALLICSPECGLOSSMAP + - _NORMALMAP + m_InvalidKeywords: + - _METALLICGLOSSMAP + 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: 5e4ef4bc63dce4e0489f16696853d021, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 2800000, guid: 6c198679782004d74a01eb071043dd67, type: 3} + 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: 2800000, guid: 6d368fae232c84935ad61f8e9f8c15b2, type: 3} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - 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.59999996 + - _GlossyReflections: 1 + - _Metallic: 0 + - _Mode: 0 + - _OcclusionStrength: 1 + - _Parallax: 0.02 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Smoothness: 1 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _UVSec: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &2730538192475221696 +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 diff --git a/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase02Material.mat.meta b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase02Material.mat.meta new file mode 100644 index 00000000..aa069edc --- /dev/null +++ b/Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase02Material.mat.meta @@ -0,0 +1,15 @@ +fileFormatVersion: 2 +guid: 766ad8c8ee3c34ca3bd992e07b3994d1 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Material/512x512/WhiteDirt/SocketCase02Material.mat + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models.meta b/Assets/SocketsAndSwitches/Models.meta new file mode 100644 index 00000000..28bd0ca2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Models.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 35529ae6d89394c95b573df4f0fd5389 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Models/LightSwitches01.fbx b/Assets/SocketsAndSwitches/Models/LightSwitches01.fbx new file mode 100644 index 00000000..1de7fe98 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/LightSwitches01.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/LightSwitches01.fbx.meta b/Assets/SocketsAndSwitches/Models/LightSwitches01.fbx.meta new file mode 100644 index 00000000..0d9acdfe --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/LightSwitches01.fbx.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: InsideMaterial + second: {fileID: 2100000, guid: a6534f48eb2f844f2bc5eeb488d1cc0f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: LightSwitchesMaterial + second: {fileID: 2100000, guid: 1034810bf64924bdd8e7938daec0c4a1, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/LightSwitches01.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models/LightSwitches02.fbx b/Assets/SocketsAndSwitches/Models/LightSwitches02.fbx new file mode 100644 index 00000000..341bada4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/LightSwitches02.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/LightSwitches02.fbx.meta b/Assets/SocketsAndSwitches/Models/LightSwitches02.fbx.meta new file mode 100644 index 00000000..bce79f93 --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/LightSwitches02.fbx.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: f4979408603c04d3292b9e903f5a16b2 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: InsideMaterial + second: {fileID: 2100000, guid: a6534f48eb2f844f2bc5eeb488d1cc0f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: LightSwitchesMaterial + second: {fileID: 2100000, guid: 1034810bf64924bdd8e7938daec0c4a1, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/LightSwitches02.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models/Socket01.fbx b/Assets/SocketsAndSwitches/Models/Socket01.fbx new file mode 100644 index 00000000..b224f0c8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/Socket01.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/Socket01.fbx.meta b/Assets/SocketsAndSwitches/Models/Socket01.fbx.meta new file mode 100644 index 00000000..ae3ff34d --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/Socket01.fbx.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 2017e0e46dfd54af895861cb15e8e215 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: InsideMaterial + second: {fileID: 2100000, guid: a6534f48eb2f844f2bc5eeb488d1cc0f, type: 2} + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: LightSwitchesMaterial + second: {fileID: 2100000, guid: 1034810bf64924bdd8e7938daec0c4a1, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/Socket01.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models/Socket02.fbx b/Assets/SocketsAndSwitches/Models/Socket02.fbx new file mode 100644 index 00000000..ddf2afe4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/Socket02.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/Socket02.fbx.meta b/Assets/SocketsAndSwitches/Models/Socket02.fbx.meta new file mode 100644 index 00000000..28e9adc3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/Socket02.fbx.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: ce5d75d55123447069903d64d6719fdc +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Socket02Material + second: {fileID: 2100000, guid: 1f9d691951cbe42cebd850485b6a6264, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/Socket02.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models/Socket03.fbx b/Assets/SocketsAndSwitches/Models/Socket03.fbx new file mode 100644 index 00000000..30eb92d9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/Socket03.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/Socket03.fbx.meta b/Assets/SocketsAndSwitches/Models/Socket03.fbx.meta new file mode 100644 index 00000000..2e9409a0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/Socket03.fbx.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: 55405defff8774bb598c0cda58b59547 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: Socket03Material + second: {fileID: 2100000, guid: d79e4abebad4041789b088998ae1c2e1, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/Socket03.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models/SocketCase01.fbx b/Assets/SocketsAndSwitches/Models/SocketCase01.fbx new file mode 100644 index 00000000..912461c7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/SocketCase01.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/SocketCase01.fbx.meta b/Assets/SocketsAndSwitches/Models/SocketCase01.fbx.meta new file mode 100644 index 00000000..7eb7f395 --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/SocketCase01.fbx.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: 60270438d04674b6a8ff59ff2fa2df5f +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: SocketCase01Material + second: {fileID: 2100000, guid: 3b6cd8b8c36454a18a50c10bf2d05707, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/SocketCase01.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models/SocketCase02.fbx b/Assets/SocketsAndSwitches/Models/SocketCase02.fbx new file mode 100644 index 00000000..e7fa5289 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/SocketCase02.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/SocketCase02.fbx.meta b/Assets/SocketsAndSwitches/Models/SocketCase02.fbx.meta new file mode 100644 index 00000000..459a2d4e --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/SocketCase02.fbx.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: bc0b5b0f845744f929e523be99af81f9 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: SocketCase01Material + second: {fileID: 2100000, guid: 3b6cd8b8c36454a18a50c10bf2d05707, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/SocketCase02.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Models/SocketCase03.fbx b/Assets/SocketsAndSwitches/Models/SocketCase03.fbx new file mode 100644 index 00000000..5dec1f36 Binary files /dev/null and b/Assets/SocketsAndSwitches/Models/SocketCase03.fbx differ diff --git a/Assets/SocketsAndSwitches/Models/SocketCase03.fbx.meta b/Assets/SocketsAndSwitches/Models/SocketCase03.fbx.meta new file mode 100644 index 00000000..90a64a4f --- /dev/null +++ b/Assets/SocketsAndSwitches/Models/SocketCase03.fbx.meta @@ -0,0 +1,118 @@ +fileFormatVersion: 2 +guid: 89c7f27fd57e141979c4b2d7bb8d41a1 +ModelImporter: + serializedVersion: 21300 + internalIDToNameTable: [] + externalObjects: + - first: + type: UnityEngine:Material + assembly: UnityEngine.CoreModule + name: SocketCase02Material + second: {fileID: 2100000, guid: d90c4ce794ee44d29be5951e9345170a, type: 2} + 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: 1 + 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: 1 + rootMotionBoneName: + hasTranslationDoF: 0 + hasExtraRoot: 0 + skeletonHasParents: 1 + lastHumanDescriptionAvatarSource: {instanceID: 0} + autoGenerateAvatarMappingIfUnspecified: 1 + animationType: 2 + humanoidOversampling: 1 + avatarSetup: 0 + addHumanoidExtraRootOnlyWhenUsingAvatar: 1 + remapMaterialsIfMaterialImportModeIsNone: 0 + additionalBone: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Models/SocketCase03.fbx + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs.meta b/Assets/SocketsAndSwitches/Prefabs.meta new file mode 100644 index 00000000..2638a38c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e05ca1e3b17e428c8f4a9ca72de94f9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024.meta new file mode 100644 index 00000000..e0ea9a21 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 263ba99ae9b83465fa28ecec23e66e2f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black.meta new file mode 100644 index 00000000..a7e16d21 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23bd0437dce414a8b9439451eef91b96 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches01.prefab new file mode 100644 index 00000000..3bc425e5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1425174364268753294 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1769048393407736628} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1769048393407736628 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1425174364268753294} + 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: 5796063455488455914} + - {fileID: 5796063456031516290} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6333600926529274217 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1769048393407736628} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &5796063456031516290 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 6333600926529274217} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6333600927064150785 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1769048393407736628} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b32d1895a1d25488ebeaccefc703b8c1, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &5796063455488455914 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 6333600927064150785} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches01.prefab.meta new file mode 100644 index 00000000..aadc7981 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 863043faf27df4bec96381715880934d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches02.prefab new file mode 100644 index 00000000..e2d54553 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1018188745715266127 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 390271556113721589} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &390271556113721589 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1018188745715266127} + 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: 1145051832266785320} + - {fileID: 1574928228053446909} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &607620836153714115 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 390271556113721589} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b32d1895a1d25488ebeaccefc703b8c1, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &1145051832266785320 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 607620836153714115} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1320115014222288662 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 390271556113721589} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &1574928228053446909 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 1320115014222288662} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches02.prefab.meta new file mode 100644 index 00000000..b6bb9dc6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3c03aade4e60b4276aa8be696915d883 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches03.prefab new file mode 100644 index 00000000..2a85623d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8189121912184140565 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8189121912184140564} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8189121912184140564 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8189121912184140565} + 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: 8516064457334027075} + - {fileID: 1193952754675510615} + - {fileID: 1193952754277196434} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1665061690572868284 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8189121912184140564} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &1193952754675510615 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 1665061690572868284} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1665061690979894649 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8189121912184140564} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &1193952754277196434 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 1665061690979894649} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8189121911025046696 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8189121912184140564} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fd25edf38b00542c7a4abe5ce45dbd32, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &8516064457334027075 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 8189121911025046696} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches03.prefab.meta new file mode 100644 index 00000000..d7fc7137 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d447397a85f134816a4e140126a20d53 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket02.prefab new file mode 100644 index 00000000..7b0a3dbf --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5486680781518450101 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5147416141897856783} + - component: {fileID: 8124652195944724650} + - component: {fileID: 6279257484703108192} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5147416141897856783 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5486680781518450101} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8124652195944724650 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5486680781518450101} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &6279257484703108192 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5486680781518450101} + 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: 6b76a291e873340b5a120b8a7565d94e, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket02.prefab.meta new file mode 100644 index 00000000..6ef75cce --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 901241575cb5b4d4a8cc5b6fb2b54e59 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket03.prefab new file mode 100644 index 00000000..698b5cab --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &681811299983225276 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 161451665892354822} + - component: {fileID: 3860232467502310563} + - component: {fileID: 1330457121266290793} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &161451665892354822 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 681811299983225276} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3860232467502310563 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 681811299983225276} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &1330457121266290793 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 681811299983225276} + 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: ac6f4bb5c07ea4ba8a7d219040c0894c, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket03.prefab.meta new file mode 100644 index 00000000..aeac225c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1d25386b0f71646bbb7a62ca0b9ff32e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase01.prefab new file mode 100644 index 00000000..0cd80575 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8017031397509876751 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7208546910096496309} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7208546910096496309 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8017031397509876751} + 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: 964479413707206089} + - {fileID: 964479412963948544} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &785945857241156130 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7208546910096496309} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b32d1895a1d25488ebeaccefc703b8c1, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &964479413707206089 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 785945857241156130} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &785945857959256043 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7208546910096496309} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &964479412963948544 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 785945857959256043} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase01.prefab.meta new file mode 100644 index 00000000..2ed12321 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c8c7e58f88ab24ab68aaa74b1d6d43a6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase02.prefab new file mode 100644 index 00000000..524fe152 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4970581426453283000 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4970581426453283007} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4970581426453283007 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4970581426453283000} + 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: 4859863409457930715} + - {fileID: 4859863410152587907} + - {fileID: 4859863409384051232} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4970581425560298856 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4970581426453283007} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4859863410152587907 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4970581425560298856} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4970581426255021616 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4970581426453283007} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b32d1895a1d25488ebeaccefc703b8c1, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4859863409457930715 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4970581426255021616} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4970581426337232331 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4970581426453283007} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4859863409384051232 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4970581426337232331} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase02.prefab.meta new file mode 100644 index 00000000..f2b654c4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e2a7486442318456ca50c657deddaf2a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03.prefab new file mode 100644 index 00000000..2ce32609 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6847739379371683596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6847739379371683597} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6847739379371683597 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6847739379371683596} + 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: 6377862136186288265} + - {fileID: 6377862134945989516} + - {fileID: 6377862135299999894} + - {fileID: 6377862135236774902} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6847739379061972834 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6847739379371683597} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 6825bf50b49cd4a5997a35bf7ade450b, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &6377862136186288265 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 6847739379061972834} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6847739379914764157 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6847739379371683597} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6377862135299999894 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6847739379914764157} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6847739380003417117 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6847739379371683597} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6377862135236774902 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6847739380003417117} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6847739380302586983 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6847739379371683597} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6377862134945989516 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6847739380302586983} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03.prefab.meta new file mode 100644 index 00000000..b18ab190 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 237575a45a2d1484bbac2bd0a23b3eea +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03Rotate.prefab new file mode 100644 index 00000000..1dd178b2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2955245012789804367 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2955245012789804366} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2955245012789804366 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2955245012789804367} + 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: 3353381630524762826} + - {fileID: 3353381629617590735} + - {fileID: 3353381629229472469} + - {fileID: 3353381629308459445} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2955245010934746401 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2955245012789804366} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e131a20b4ca2e4f4f8c7252ce220979e, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &3353381630524762826 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 2955245010934746401} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2955245011841594916 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2955245012789804366} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3353381629617590735 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2955245011841594916} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2955245012159118942 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2955245012789804366} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3353381629308459445 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2955245012159118942} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2955245012196425022 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2955245012789804366} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3353381629229472469 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2955245012196425022} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..fe004757 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4bbea60f7ac6d4727a9a9af04a42ba28 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCaseRotate.prefab new file mode 100644 index 00000000..e6d2bd4e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4998655972760629056 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4998655972760629057} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4998655972760629057 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4998655972760629056} + 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: 4815599669808410390} + - {fileID: 4815599669927818685} + - {fileID: 2096851742082549129} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1914939076541162082 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4998655972760629057} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2096851742082549129 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1914939076541162082} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4998655973724017238 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4998655972760629057} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4815599669927818685 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4998655973724017238} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4998655973885626621 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4998655972760629057} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fd25edf38b00542c7a4abe5ce45dbd32, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4815599669808410390 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4998655973885626621} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..02863fab --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f7d2f45dcdf844c688b87dd34f539279 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketLightSwitches.prefab new file mode 100644 index 00000000..72b155c9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4963509568761106184 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4963509568761106185} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4963509568761106185 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4963509568761106184} + 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: 4858069920826593118} + - {fileID: 4858069920963040757} + - {fileID: 4858069921277242710} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4963509569360759485 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4963509568761106185} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &4858069921277242710 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4963509569360759485} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4963509569675227678 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4963509568761106185} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f6c6c5ab9e5e945e0b5646f449f7a42c, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4858069920963040757 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4963509569675227678} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4963509569786243253 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4963509568761106185} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b32d1895a1d25488ebeaccefc703b8c1, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4858069920826593118 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4963509569786243253} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..193f9cd4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4eb0d23576deb433383c6c9c7a433b50 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/Black/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt.meta new file mode 100644 index 00000000..189745f1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9a189ea04800140d4abf00b73d9cab25 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches01.prefab new file mode 100644 index 00000000..903ddbab --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7514167986986108393 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7137219510181502803} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7137219510181502803 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7514167986986108393} + 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: 3165839710024302733} + - {fileID: 3165839709485241061} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3199221547582515046 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7137219510181502803} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4de7a3925223a424d97397b306c96813, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3165839710024302733 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3199221547582515046} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3199221548112999694 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7137219510181502803} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3165839709485241061 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3199221548112999694} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..f4605d48 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 206b80d1cdeac4395b6d7897341a7658 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches02.prefab new file mode 100644 index 00000000..0cd33a73 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6796538774494357132 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6132205793335311414} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6132205793335311414 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6796538774494357132} + 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: 6888105922047186667} + - {fileID: 5019325167526175806} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4765513021049930709 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6132205793335311414} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &5019325167526175806 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 4765513021049930709} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6349458279677980928 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6132205793335311414} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4de7a3925223a424d97397b306c96813, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &6888105922047186667 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 6349458279677980928} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..8251e93e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0ac448db0cea84f4897afcd90d2fb997 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches03.prefab new file mode 100644 index 00000000..1c1bd5fd --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4885062888904817551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4885062888904817550} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4885062888904817550 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4885062888904817551} + 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: 4918357049521109977} + - {fileID: 2521846024919541197} + - {fileID: 2521846025057839624} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2699306424754818531 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4885062888904817550} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2521846025057839624 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 2699306424754818531} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2699306424884920870 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4885062888904817550} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2521846024919541197 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2699306424884920870} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4885062889892944946 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4885062888904817550} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 1417efeaa71f043edae632ad0f17a5f5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4918357049521109977 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4885062889892944946} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..cd592354 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 176ab3edf4916465280662cd5d5e19ac +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket02.prefab new file mode 100644 index 00000000..82b41d2c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7197892305643561370 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7543490097897192224} + - component: {fileID: 6845480039205155973} + - component: {fileID: 8711352124795600975} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7543490097897192224 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7197892305643561370} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6845480039205155973 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7197892305643561370} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &8711352124795600975 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7197892305643561370} + 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: 5b5ea15c9ad9c4c98be08c9af5a663ed, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket02.prefab.meta new file mode 100644 index 00000000..e7ca2f69 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1490bd507b9794d9988510e97caf7484 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket03.prefab new file mode 100644 index 00000000..4189f9f5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2431324904560530126 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3095694448220457076} + - component: {fileID: 2114939373674514385} + - component: {fileID: 4232593574443332379} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3095694448220457076 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2431324904560530126} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2114939373674514385 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2431324904560530126} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &4232593574443332379 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2431324904560530126} + 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: 0baf92dcc3d9047d7a4d880fe75983f0, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket03.prefab.meta new file mode 100644 index 00000000..ce1eb1e9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c0db5ed7fb5344be482884bd70b9f7bc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase01.prefab new file mode 100644 index 00000000..c39e441b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5165502839096790845 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5540656633665983879} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5540656633665983879 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5165502839096790845} + 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: 2706450105223474939} + - {fileID: 2706450105858046770} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2451514510217960665 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5540656633665983879} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2706450105858046770 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2451514510217960665} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2451514510810581264 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5540656633665983879} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4de7a3925223a424d97397b306c96813, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2706450105223474939 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2451514510810581264} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..8dc841ab --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 10d0cae457da24187a2879deb7724aa6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase02.prefab new file mode 100644 index 00000000..f10a1860 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2211827593561284508 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2211827593561284507} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2211827593561284507 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2211827593561284508} + 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: 1818121672133132031} + - {fileID: 1818121672559418791} + - {fileID: 1818121672319225092} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2211827593482254924 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2211827593561284507} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1818121672559418791 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2211827593482254924} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2211827593714051823 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2211827593561284507} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1818121672319225092 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2211827593714051823} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2211827593908476180 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2211827593561284507} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4de7a3925223a424d97397b306c96813, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1818121672133132031 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 2211827593908476180} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..16d416c5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e8d6c15cc57244e96a7c3ea4a13db469 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03.prefab new file mode 100644 index 00000000..74d4d30f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4021987962619160476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4021987962619160477} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4021987962619160477 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4021987962619160476} + 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: 3484169567815921689} + - {fileID: 3484169569058556700} + - {fileID: 3484169568703758342} + - {fileID: 3484169568742212454} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4021987962744696055 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4021987962619160477} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3484169569058556700 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4021987962744696055} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4021987963052647565 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4021987962619160477} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3484169568742212454 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4021987963052647565} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4021987963132782573 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4021987962619160477} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3484169568703758342 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4021987963132782573} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4021987963987138546 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4021987962619160477} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c3a953651e6564da0ae958e86a053e71, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &3484169567815921689 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 4021987963987138546} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..2adf1630 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e91227f36ad534a7f8af19c6e3517ee9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..fc7ae33d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &287675812941503674 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 287675812941503675} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &287675812941503675 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 287675812941503674} + 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: 321091332950100799} + - {fileID: 321091333989101626} + - {fileID: 321091333836389152} + - {fileID: 321091333606176832} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &287675812262254545 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 287675812941503675} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &321091333989101626 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 287675812262254545} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &287675812448787659 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 287675812941503675} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &321091333836389152 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 287675812448787659} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &287675812636794795 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 287675812941503675} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &321091333606176832 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 287675812636794795} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &287675813301578964 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 287675812941503675} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c0832bfdf1785468ba15676faa67ed59, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &321091332950100799 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 287675813301578964} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..28eb075f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7a7555d00bd8e4befb242859f9ffed35 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..c7d762fe --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8983848761517252716 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8983848761517252717} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8983848761517252717 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8983848761517252716} + 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: 8874259110325035066} + - {fileID: 8874259110167624337} + - {fileID: 2660011419430603429} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2549313605268516174 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8983848761517252717} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2660011419430603429 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2549313605268516174} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8983848762641205201 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8983848761517252717} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 1417efeaa71f043edae632ad0f17a5f5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &8874259110325035066 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 8983848762641205201} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8983848762773200250 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8983848761517252717} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8874259110167624337 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8983848762773200250} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..1606fdec --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 6f54223b10f5849eea02f9e6789d86b2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..22c4e5a4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3817831813196610124 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3817831813196610125} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3817831813196610125 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3817831813196610124} + 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: 3706762330703919642} + - {fileID: 3706762330856874161} + - {fileID: 3706762331153995794} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3817831811649044473 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3817831813196610125} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3706762331153995794 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3817831811649044473} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3817831811945891674 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3817831813196610125} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 411a31c6b2bb24b4ea763f7a7441ff97, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3706762330856874161 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3817831811945891674} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3817831812073954801 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3817831813196610125} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4de7a3925223a424d97397b306c96813, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3706762330703919642 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3817831812073954801} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..2fcc4755 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9c6c4bdf421d74741a9445abf950ba55 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/BlackDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White.meta new file mode 100644 index 00000000..d97eef15 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: adaa9762aeab94bd9a7ddae62c572ba3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches01.prefab new file mode 100644 index 00000000..122bd1cf --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &871849541932749338 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 527693179438057632} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &527693179438057632 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 871849541932749338} + 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: 5742532643271300990} + - {fileID: 5742532643806233878} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5204800518628221693 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 527693179438057632} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &5742532643806233878 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 5204800518628221693} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5204800519171223701 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 527693179438057632} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 37884395d836c48e1a3bd3d2f43fa46b, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &5742532643271300990 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 5204800519171223701} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches01.prefab.meta new file mode 100644 index 00000000..53787a4b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: baead30beeac5484582fde0d7bc25706 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches02.prefab new file mode 100644 index 00000000..9bbc06fa --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2419023141930759243 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3087719023812226801} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3087719023812226801 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2419023141930759243} + 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: 2330409866725671980} + - {fileID: 4208623881253009145} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2872731483104256967 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3087719023812226801} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 37884395d836c48e1a3bd3d2f43fa46b, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2330409866725671980 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2872731483104256967} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4459320517445472530 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3087719023812226801} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &4208623881253009145 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 4459320517445472530} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches02.prefab.meta new file mode 100644 index 00000000..a53c5291 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 6970bb01121c4408998223c011d63f68 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches03.prefab new file mode 100644 index 00000000..108a663a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6494915168450024277 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6494915168450024276} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6494915168450024276 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6494915168450024277} + 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: 6748691948156064515} + - {fileID: 4257816613774986519} + - {fileID: 4257816613368251090} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4367494225817627388 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6494915168450024276} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &4257816613774986519 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4367494225817627388} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4367494226216166713 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6494915168450024276} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &4257816613368251090 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 4367494226216166713} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6494915169475163368 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6494915168450024276} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b7f85c4fc2c484e8981dea8a1fc55cb2, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &6748691948156064515 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6494915169475163368} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches03.prefab.meta new file mode 100644 index 00000000..1e411e7a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d0cbb114d49c345e2babe4d630fd4d34 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket02.prefab new file mode 100644 index 00000000..9e67c457 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1292481401329590204 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1919659685028087046} + - component: {fileID: 3245929596842134179} + - component: {fileID: 787897442365554281} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1919659685028087046 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1292481401329590204} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3245929596842134179 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1292481401329590204} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &787897442365554281 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1292481401329590204} + 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: b0e6f04f2f76e497d83adeb88c717fa8, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket02.prefab.meta new file mode 100644 index 00000000..20d29040 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 59912dbde2f7c488b94e700b5b98a9a6 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket03.prefab new file mode 100644 index 00000000..82d12620 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1681131675776629023 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2026414183811310501} + - component: {fileID: 3148191391376337920} + - component: {fileID: 888449556465653962} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2026414183811310501 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681131675776629023} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3148191391376337920 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681131675776629023} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &888449556465653962 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681131675776629023} + 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: 572212430d9694176af79e136c76516f, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket03.prefab.meta new file mode 100644 index 00000000..3348ac66 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3ee173ac5436d4385885f22fe453afbf +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase01.prefab new file mode 100644 index 00000000..6a08044d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6879962689591473771 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6066728243518123217} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6066728243518123217 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6879962689591473771} + 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: 4420910733055842221} + - {fileID: 4420910733774291556} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4238031967488664975 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6066728243518123217} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4420910733774291556 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4238031967488664975} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4238031968232288326 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6066728243518123217} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 37884395d836c48e1a3bd3d2f43fa46b, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4420910733055842221 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4238031968232288326} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase01.prefab.meta new file mode 100644 index 00000000..9b18694e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f37ffb2dcf27443b887ae2f541c9146b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase02.prefab new file mode 100644 index 00000000..858a0e9b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4534679313401945286 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4534679313401945281} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4534679313401945281 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4534679313401945286} + 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: 4135663119943679397} + - {fileID: 4135663120571293437} + - {fileID: 4135663120263990878} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4534679312953555222 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4534679313401945281} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4135663120571293437 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4534679312953555222} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4534679313252460981 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4534679313401945281} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4135663120263990878 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4534679313252460981} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4534679313581103694 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4534679313401945281} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 37884395d836c48e1a3bd3d2f43fa46b, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4135663119943679397 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4534679313581103694} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase02.prefab.meta new file mode 100644 index 00000000..02a41fc8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 605b863d69124457182d1e47664a522e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03.prefab new file mode 100644 index 00000000..4e7a0626 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5882914058063507742 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5882914058063507743} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5882914058063507743 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5882914058063507742} + 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: 6210171792853427867} + - {fileID: 6210171793827634590} + - {fileID: 6210171793707718276} + - {fileID: 6210171793535276516} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5882914057400515189 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5882914058063507743} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6210171793827634590 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5882914057400515189} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5882914057486610799 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5882914058063507743} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6210171793707718276 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5882914057486610799} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5882914057701257743 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5882914058063507743} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6210171793535276516 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5882914057701257743} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5882914058374513008 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5882914058063507743} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: bbb40d86dead747b7a7597638f6ceccc, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &6210171792853427867 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 5882914058374513008} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03.prefab.meta new file mode 100644 index 00000000..7477041b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 048eca848d7d14f3fb326332fb056918 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03Rotate.prefab new file mode 100644 index 00000000..6c92b6d4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5224975315109311043 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5224975315109311042} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5224975315109311042 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5224975315109311043} + 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: 5694922815638955462} + - {fileID: 5694922816680337091} + - {fileID: 5694922816493311449} + - {fileID: 5694922816312481465} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5224975314446383400 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5224975315109311042} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5694922816680337091 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5224975314446383400} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5224975314599588402 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5224975315109311042} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5694922816493311449 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5224975314599588402} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5224975314805846354 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5224975315109311042} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5694922816312481465 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5224975314805846354} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5224975315487425069 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5224975315109311042} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: cba82eebe61ac4c27bd1bc26d8d8618c, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &5694922815638955462 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 5224975315487425069} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..597cd802 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4ba08c323b78a4a319324bb7b80d4b75 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCaseRotate.prefab new file mode 100644 index 00000000..365f2e70 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &987653509216972877 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 987653509216972876} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &987653509216972876 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 987653509216972877} + 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: 738133901903966235} + - {fileID: 738133901746809520} + - {fileID: 6193453552367491716} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &987653508194228208 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 987653509216972876} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b7f85c4fc2c484e8981dea8a1fc55cb2, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &738133901903966235 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 987653508194228208} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &987653508326477147 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 987653509216972876} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &738133901746809520 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 987653508326477147} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5942825492171439471 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 987653509216972876} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6193453552367491716 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5942825492171439471} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..ae2d2552 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 75222156f2ed34c319d9260adb21d3f1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketLightSwitches.prefab new file mode 100644 index 00000000..8a3e1c1a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1031439694872860002 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1031439694872860003} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1031439694872860003 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031439694872860002} + 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: 710110295682536756} + - {fileID: 710110295798009759} + - {fileID: 710110295034246972} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1031439695791138932 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031439694872860003} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &710110295798009759 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1031439695791138932} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1031439695931519711 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031439694872860003} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 37884395d836c48e1a3bd3d2f43fa46b, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &710110295682536756 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1031439695931519711} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1031439696554643671 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031439694872860003} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ba985c42183264c6cacd15a95c0f5d94, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &710110295034246972 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 1031439696554643671} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..b7d47318 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ae925d36256c64bdeba743bf86eb56d0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/White/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt.meta new file mode 100644 index 00000000..9f743e3e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 44bd06e51add74ef89944b88a4a747c2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches01.prefab new file mode 100644 index 00000000..8086c378 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7653927414285009777 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7022209968181172683} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7022209968181172683 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7653927414285009777} + 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: 2995117948759000597} + - {fileID: 2995117949298136189} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3322093683220853654 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7022209968181172683} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2995117949298136189 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3322093683220853654} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3322093683751264766 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7022209968181172683} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0758209dd69d54d54b3f63614b5b03ff, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2995117948759000597 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3322093683751264766} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..ee42917e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1e1a6e53c2ffd4c8c963f564019e6eca +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches02.prefab new file mode 100644 index 00000000..e201e62a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8935701602417438392 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8595733343516668930} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8595733343516668930 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8935701602417438392} + 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: 9062547113425919711} + - {fileID: 7492842884552338442} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6949429823768054753 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8595733343516668930} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &7492842884552338442 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 6949429823768054753} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8813012208104716596 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8595733343516668930} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0758209dd69d54d54b3f63614b5b03ff, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &9062547113425919711 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8813012208104716596} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..52baedcb --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches03.prefab new file mode 100644 index 00000000..e09c2f15 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4255944314136357333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4255944314136357332} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4255944314136357332 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4255944314136357333} + 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: 4366978380815657347} + - {fileID: 6495450185867655063} + - {fileID: 6495450185460627538} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4255944315226721896 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4255944314136357332} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0560e34a1c4a640c0860103dc8d945a7, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4366978380815657347 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4255944315226721896} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6750545075314331772 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4255944314136357332} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &6495450185867655063 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 6750545075314331772} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6750545075712647097 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4255944314136357332} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &6495450185460627538 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 6750545075712647097} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..e8665a20 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8f2b3d5e734f148b8ac82e34faf10f6f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket02.prefab new file mode 100644 index 00000000..844215f6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8489768337820013520 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9122718336007702890} + - component: {fileID: 5275329707584358095} + - component: {fileID: 7985246226518995461} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9122718336007702890 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8489768337820013520} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5275329707584358095 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8489768337820013520} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &7985246226518995461 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8489768337820013520} + 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: 7ea5b15ca969e4528b86e97cf727589c, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket02.prefab.meta new file mode 100644 index 00000000..3695786a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ae52d00c6ce144e889ce7d5c7bad77af +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket03.prefab new file mode 100644 index 00000000..e41b1974 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &800808586372571416 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 24448216592399266} + - component: {fileID: 4033255024089805831} + - component: {fileID: 1161356247761305805} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &24448216592399266 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 800808586372571416} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4033255024089805831 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 800808586372571416} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &1161356247761305805 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 800808586372571416} + 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: 78c7f43cc88694148a04ec8f243316ce, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket03.prefab.meta new file mode 100644 index 00000000..25464367 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1193e5d61afd2411a820b274a0bd2088 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase01.prefab new file mode 100644 index 00000000..2fb9ce7f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2323824376809064054 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3131181903523699916} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3131181903523699916 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2323824376809064054} + 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: 4764617690731128752} + - {fileID: 4764617690407465593} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5014173205367046235 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3131181903523699916} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0758209dd69d54d54b3f63614b5b03ff, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4764617690731128752 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 5014173205367046235} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5014173205732660626 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3131181903523699916} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4764617690407465593 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5014173205732660626} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..9de0a17e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e14e47669a58645f9a5c4c3675712145 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase02.prefab new file mode 100644 index 00000000..c0a8e34b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &129011628096403203 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 129011628096403204} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &129011628096403204 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 129011628096403203} + 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: 450621753943332448} + - {fileID: 450621755646801208} + - {fileID: 450621754402071963} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &129011626742289107 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 129011628096403204} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &450621755646801208 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 129011626742289107} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &129011627978621552 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 129011628096403204} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &450621754402071963 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 129011627978621552} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &129011628445692299 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 129011628096403204} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0758209dd69d54d54b3f63614b5b03ff, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &450621753943332448 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 129011628445692299} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..c4bc6e85 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 55dfe5c0e21ca47909242bfd633df7d5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03.prefab new file mode 100644 index 00000000..27d9ea61 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3827390617198618976 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3827390617198618977} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3827390617198618977 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3827390617198618976} + 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: 3645424212923023077} + - {fileID: 3645424212017972704} + - {fileID: 3645424212200836858} + - {fileID: 3645424212239027610} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3827390615883028750 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3827390617198618977} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 74487d3eff5514ed4851049337226b43, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &3645424212923023077 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 3827390615883028750} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3827390616558430833 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3827390617198618977} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3645424212239027610 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3827390616558430833} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3827390616638826769 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3827390617198618977} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3645424212200836858 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3827390616638826769} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3827390616787870219 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3827390617198618977} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3645424212017972704 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3827390616787870219} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..7ea8d3e4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9770f7e4b37524b8cbc06c3dab0c8dca +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..5d6e17b9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6776624547686148308 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6776624547686148309} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6776624547686148309 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6776624547686148308} + 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: 6449666361100435281} + - {fileID: 6449666362276021332} + - {fileID: 6449666361820565326} + - {fileID: 6449666362050776110} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6776624546754782143 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6776624547686148309} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6449666362276021332 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6776624546754782143} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6776624546988420037 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6776624547686148309} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6449666362050776110 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6776624546988420037} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6776624547176425637 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6776624547686148309} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6449666361820565326 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6776624547176425637} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6776624547930052794 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6776624547686148309} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 68c13f287ca1b459ea1264700739f5f3, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &6449666361100435281 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 6776624547930052794} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..32d38d75 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 23a0b2b9a2b1445ae9c12389186140e0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..af9a9006 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2434337142544210392 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2434337142544210393} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2434337142544210393 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2434337142544210392} + 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: 2756829448719309198} + - {fileID: 2756829448574731045} + - {fileID: 8759439876787958545} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2434337141455421029 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2434337142544210393} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0560e34a1c4a640c0860103dc8d945a7, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &2756829448719309198 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 2434337141455421029} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2434337141558305998 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2434337142544210393} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2756829448574731045 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2434337141558305998} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9080788837607347450 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2434337142544210393} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8759439876787958545 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9080788837607347450} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..5b344f4a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fafd9d0939c9b482385868f53cfdf897 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..54b76fa8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1371813996758444286 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1371813996758444287} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1371813996758444287 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1371813996758444286} + 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: 1478043738286663848} + - {fileID: 1478043738150482435} + - {fileID: 1478043737837619872} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1371813995600432963 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1371813996758444287} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0758209dd69d54d54b3f63614b5b03ff, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1478043738286663848 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1371813995600432963} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1371813995711714792 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1371813996758444287} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1478043738150482435 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1371813995711714792} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1371813996024311115 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1371813996758444287} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 58ac8772f544e41958dc93958dff7baf, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &1478043737837619872 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 1371813996024311115} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..4c435e2a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 6cc20f0af18474b47b89dad5997c9ad9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/1024x1024/WhiteDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128.meta b/Assets/SocketsAndSwitches/Prefabs/128x128.meta new file mode 100644 index 00000000..5bbe5a9f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6d437cdb1857442e7be1d98af230a301 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black.meta new file mode 100644 index 00000000..81d0d714 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ea69e1dbc1fac43f4bcd50f61bd49fcd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches01.prefab new file mode 100644 index 00000000..623af40b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4288683551392429052 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4288683551392429053} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4288683551392429053 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4288683551392429052} + 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: 4327624486784941167} + - {fileID: 4327624486037013942} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4288683551590996868 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4288683551392429053} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3cb2bb7e6707248cabb84a940ef1e940, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4327624486784941167 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4288683551590996868} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4288683552372531805 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4288683551392429053} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &4327624486037013942 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4288683552372531805} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches01.prefab.meta new file mode 100644 index 00000000..500595cd --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1a1e90ff3d1474abea63b81be22af264 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches02.prefab new file mode 100644 index 00000000..c10ce821 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7890020295721599032 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7890020295721599035} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7890020295721599035 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7890020295721599032} + 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: 7706858369872114037} + - {fileID: 7706858369198776577} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7890020294843455134 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7890020295721599035} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3cb2bb7e6707248cabb84a940ef1e940, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &7706858369872114037 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 7890020294843455134} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7890020295517112042 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7890020295721599035} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &7706858369198776577 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 7890020295517112042} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches02.prefab.meta new file mode 100644 index 00000000..e7949bec --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f0e35199af836459f8485b998fe6a051 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches03.prefab new file mode 100644 index 00000000..6f738d0a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1921818913502203079 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1921818913502203072} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1921818913502203072 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1921818913502203079} + 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: 2098982420103329738} + - {fileID: 2098982420329317915} + - {fileID: 2098982420268853798} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1921818913255563760 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1921818913502203072} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2098982420329317915 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 1921818913255563760} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1921818913324617165 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1921818913502203072} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2098982420268853798 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 1921818913324617165} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1921818913447940129 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1921818913502203072} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3cb2bb7e6707248cabb84a940ef1e940, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &2098982420103329738 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1921818913447940129} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches03.prefab.meta new file mode 100644 index 00000000..f167e205 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a859eacefd2f84324b4256d2308ae4ff +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket02.prefab new file mode 100644 index 00000000..ae11499a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6011813619027171751 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6011813619027171750} + - component: {fileID: 6011813619027171748} + - component: {fileID: 6011813619027171749} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6011813619027171750 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6011813619027171751} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6011813619027171748 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6011813619027171751} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &6011813619027171749 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6011813619027171751} + 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: ba00a004aba3843fba09841bacc8e1d8, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket02.prefab.meta new file mode 100644 index 00000000..e223f56c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 30c7fee3173b048da8fa42a5d0bf4227 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket03.prefab new file mode 100644 index 00000000..ad307085 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3485922752003587030 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3485922752003587031} + - component: {fileID: 3485922752003587025} + - component: {fileID: 3485922752003587024} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3485922752003587031 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3485922752003587030} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3485922752003587025 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3485922752003587030} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &3485922752003587024 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3485922752003587030} + 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: 2592f3c6a7e124f6cbecc87687aa6943, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket03.prefab.meta new file mode 100644 index 00000000..db103a23 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7f5149788f7b14bbf877b707d9a9c4af +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase01.prefab new file mode 100644 index 00000000..ca49abc1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8058311769751945507 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8058311769751945516} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8058311769751945516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8058311769751945507} + 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: 7520561270172478312} + - {fileID: 7520561270036499776} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8058311770643467395 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8058311769751945516} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3cb2bb7e6707248cabb84a940ef1e940, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &7520561270172478312 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8058311770643467395} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8058311770779642539 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8058311769751945516} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7520561270036499776 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8058311770779642539} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase01.prefab.meta new file mode 100644 index 00000000..78d1fad9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b10fe3ad5ff984308b006a21b40526bf +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase02.prefab new file mode 100644 index 00000000..43e35939 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6071995270076085854 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6071995270076085855} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6071995270076085855 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6071995270076085854} + 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: 6038965341942396260} + - {fileID: 6038965342303142142} + - {fileID: 6038965341673788292} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6071995269432649493 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6071995270076085855} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6038965342303142142 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6071995269432649493} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6071995269826892431 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6071995270076085855} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3cb2bb7e6707248cabb84a940ef1e940, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &6038965341942396260 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6071995269826892431} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6071995270095303791 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6071995270076085855} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6038965341673788292 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6071995270095303791} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase02.prefab.meta new file mode 100644 index 00000000..090f6e32 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d1083476db884402b8be244749f6801b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03.prefab new file mode 100644 index 00000000..a8d41237 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7856254675157462014 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7856254675157462009} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7856254675157462009 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7856254675157462014} + 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: 7678003486674006322} + - {fileID: 7678003486908467016} + - {fileID: 7678003485756452473} + - {fileID: 7678003487563597835} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7856254674235371488 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7856254675157462009} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7678003487563597835 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7856254674235371488} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7856254674924380323 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7856254675157462009} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7678003486908467016 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7856254674924380323} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7856254675158783705 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7856254675157462009} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 561760cd5eacd44ffa879d0b7c5030dd, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &7678003486674006322 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 7856254675158783705} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7856254676034128274 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7856254675157462009} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7678003485756452473 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7856254676034128274} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03.prefab.meta new file mode 100644 index 00000000..46c3d28f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: eed66b2387c924130818bcf7899e000d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03Rotate.prefab new file mode 100644 index 00000000..0422787b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4348625286292014875 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4348625286292014874} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4348625286292014874 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4348625286292014875} + 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: 4311021081041495590} + - {fileID: 4311021080861799935} + - {fileID: 4311021080792370555} + - {fileID: 4311021080902337742} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4348625286180340173 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4348625286292014874} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 561760cd5eacd44ffa879d0b7c5030dd, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &4311021081041495590 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 4348625286180340173} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4348625286327886629 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4348625286292014874} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4311021080902337742 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4348625286327886629} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4348625286401724948 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4348625286292014874} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4311021080861799935 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4348625286401724948} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4348625286471150224 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4348625286292014874} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4311021080792370555 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4348625286471150224} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..b37662a2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 308825b97f4cb44fcb896e600a78a71a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCaseRotate.prefab new file mode 100644 index 00000000..795e4a80 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6129082173158878491 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6129082173158878490} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6129082173158878490 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6129082173158878491} + 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: 5945990374696087647} + - {fileID: 5945990375551415979} + - {fileID: 5945990376090703851} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6129082171819454464 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6129082173158878490} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5945990376090703851 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6129082171819454464} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6129082172350353728 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6129082173158878490} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5945990375551415979 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6129082172350353728} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6129082173239302068 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6129082173158878490} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3cb2bb7e6707248cabb84a940ef1e940, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5945990374696087647 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6129082173239302068} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..f87cf824 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4bd87fcbd18ab4370a2b04829f11085c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketLightSwitches.prefab new file mode 100644 index 00000000..a427006c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4072392365010477677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4072392365010477676} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4072392365010477676 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4072392365010477677} + 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: 4543765040264303637} + - {fileID: 4543765039833095990} + - {fileID: 4543765039234856788} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4072392365060895742 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4072392365010477676} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3cb2bb7e6707248cabb84a940ef1e940, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4543765040264303637 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4072392365060895742} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4072392365450098909 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4072392365010477676} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4543765039833095990 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4072392365450098909} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4072392366056788159 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4072392365010477676} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0874845345d6840fd882ef4e0335d5fc, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &4543765039234856788 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4072392366056788159} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..4c6e1496 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 92150b0b3a9d0402890b05592380816e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/Black/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt.meta new file mode 100644 index 00000000..0c62c197 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: adb1ec757af9745d79f2b62319e14ba4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches01.prefab new file mode 100644 index 00000000..c26a1a06 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8951484445563366778 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8951484445563366779} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8951484445563366779 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8951484445563366778} + 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: 8912824668292536016} + - {fileID: 8912824667840088549} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8951484445934170427 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8951484445563366779} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fb4d634daf69948e3ad27de1705dc016, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8912824668292536016 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8951484445934170427} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8951484446420233742 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8951484445563366779} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &8912824667840088549 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 8951484446420233742} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..e59a708c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3d9dc1ad3fa864a7986a39db90271aa5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches02.prefab new file mode 100644 index 00000000..0759cf2a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3881832983902994404 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3881832983902994403} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3881832983902994403 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3881832983902994404} + 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: 3627002940267230445} + - {fileID: 3627002941624450318} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3881832983324203749 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3881832983902994403} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &3627002941624450318 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 3881832983324203749} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3881832984714777350 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3881832983902994403} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fb4d634daf69948e3ad27de1705dc016, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3627002940267230445 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3881832984714777350} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..d2aba0b7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0e17b4107c4a64a15ac4d54fd7cd7b62 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches03.prefab new file mode 100644 index 00000000..39a2bd27 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1431846778402507451 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1431846778402507450} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1431846778402507450 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1431846778402507451} + 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: 1464875433429514376} + - {fileID: 1464875433994200468} + - {fileID: 1464875433596199078} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1431846779717337727 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1431846778402507450} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &1464875433994200468 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 1431846779717337727} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1431846780106950477 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1431846778402507450} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &1464875433596199078 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 1431846780106950477} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1431846780281970531 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1431846778402507450} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fb4d634daf69948e3ad27de1705dc016, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1464875433429514376 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1431846780281970531} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..970f3187 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 238b76807e3fe4d4cbd326bda5fbbef9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket02.prefab new file mode 100644 index 00000000..3a2a257c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6694387389254619033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6694387389254619034} + - component: {fileID: 6694387389254619036} + - component: {fileID: 6694387389254619035} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6694387389254619034 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6694387389254619033} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6694387389254619036 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6694387389254619033} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &6694387389254619035 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6694387389254619033} + 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: b5a65c51624594c35bda21e82ee11323, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket02.prefab.meta new file mode 100644 index 00000000..ec65cfa5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1fa6c378c954c4ad1a4d7dfdac72ee87 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket03.prefab new file mode 100644 index 00000000..3cb2067e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &433654707263373785 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 433654707263373784} + - component: {fileID: 433654707263373790} + - component: {fileID: 433654707263373791} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &433654707263373784 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 433654707263373785} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &433654707263373790 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 433654707263373785} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &433654707263373791 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 433654707263373785} + 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: 3e12b7834fc214b988580a3a464072f0, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket03.prefab.meta new file mode 100644 index 00000000..f8878368 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8e5737a43804b456f8baeda05c8a8d06 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase01.prefab new file mode 100644 index 00000000..e843fde5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8241343374206212514 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8241343374206212515} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8241343374206212515 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8241343374206212514} + 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: 8490863505810306682} + - {fileID: 8490863506214743674} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8241343373256722833 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8241343374206212515} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8490863506214743674 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8241343373256722833} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8241343373653037457 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8241343374206212515} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fb4d634daf69948e3ad27de1705dc016, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8490863505810306682 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8241343373653037457} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..e0500b0f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b63f336dab294481f802735bce4ac020 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase02.prefab new file mode 100644 index 00000000..5b04c815 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &417705589063113543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 417705589063113542} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &417705589063113542 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417705589063113543} + 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: 162486344039088686} + - {fileID: 162486345331093077} + - {fileID: 162486345720710088} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &417705588566631459 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 417705589063113542} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &162486345720710088 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 417705588566631459} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &417705588931348926 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 417705589063113542} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &162486345331093077 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 417705588931348926} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &417705590256575941 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 417705589063113542} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fb4d634daf69948e3ad27de1705dc016, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &162486344039088686 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 417705590256575941} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..c368f7bb --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: be880460f97234ec49fb0621b8f89c2d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03.prefab new file mode 100644 index 00000000..84fc8bdb --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &357558032254248033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 357558032254248032} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &357558032254248032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 357558032254248033} + 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: 251344370665029749} + - {fileID: 251344371552595037} + - {fileID: 251344372000870758} + - {fileID: 251344370570036878} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &357558031394453133 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 357558032254248032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &251344372000870758 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 357558031394453133} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &357558031800781750 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 357558032254248032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &251344371552595037 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 357558031800781750} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &357558032730023838 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 357558032254248032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60364320ecc17440eb7427f707eb76a7, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &251344370665029749 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 357558032730023838} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &357558032783270245 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 357558032254248032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &251344370570036878 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 357558032783270245} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..d48889c4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fd832cbb50a2b43979598f1fde8f4dca +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..78543e11 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3261935401971479443 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3261935401971479440} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3261935401971479440 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3261935401971479443} + 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: 3084404487134960553} + - {fileID: 3084404487896992353} + - {fileID: 3084404487584607891} + - {fileID: 3084404488476103357} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3261935401815799126 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3261935401971479440} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3084404488476103357 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3261935401815799126} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3261935402361417098 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3261935401971479440} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3084404487896992353 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3261935402361417098} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3261935402673801592 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3261935401971479440} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3084404487584607891 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3261935402673801592} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3261935403165400130 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3261935401971479440} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 60364320ecc17440eb7427f707eb76a7, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &3084404487134960553 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 3261935403165400130} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..d040b3ab --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: db3a9c432961442768057495a25b42b3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..43192d9a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6494300772735149685 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6494300772735149684} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6494300772735149684 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6494300772735149685} + 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: 6749450370179551141} + - {fileID: 6749450369615469392} + - {fileID: 6749450368826111873} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6494300770615371854 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6494300772735149684} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fb4d634daf69948e3ad27de1705dc016, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &6749450370179551141 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6494300770615371854} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6494300771145907387 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6494300772735149684} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6749450369615469392 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6494300771145907387} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6494300771968815210 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6494300772735149684} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6749450368826111873 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6494300771968815210} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..f37b26c2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: bbbc6f7a16d534ffcab82f531cb6abc2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..5eacd71c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5443099002530323650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5443099002530323649} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5443099002530323649 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5443099002530323650} + 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: 5477358775914248253} + - {fileID: 5477358776240841421} + - {fileID: 5477358775178847726} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5443099002000721190 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5443099002530323649} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5477358776240841421 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5443099002000721190} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5443099002327392214 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5443099002530323649} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fb4d634daf69948e3ad27de1705dc016, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5477358775914248253 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 5443099002327392214} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5443099003071365637 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5443099002530323649} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 171ea37c4214c45b6b29f595f47ea987, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &5477358775178847726 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 5443099003071365637} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..929bebbb --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ccd47fdc8234b45ac86cf08146244043 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/BlackDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White.meta new file mode 100644 index 00000000..26dfc51a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4bb74f1ab3cb14f8d9bef8f157d7a255 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches01.prefab new file mode 100644 index 00000000..9db2c0be --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2565630725004344933 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2565630725004344934} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2565630725004344934 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2565630725004344933} + 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: 2598659380620922542} + - {fileID: 2598659381244154609} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2565630725226640666 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2565630725004344934} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2598659381244154609 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2565630725226640666} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2565630725807728965 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2565630725004344934} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa910a9e96e7447d686101b4c3a40c93, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2598659380620922542 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2565630725807728965} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches01.prefab.meta new file mode 100644 index 00000000..4682c153 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5e0aa061218e946c79c9508cd99f9da9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches02.prefab new file mode 100644 index 00000000..4cf6b63c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &393664431694634946 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 393664431694634949} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &393664431694634949 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 393664431694634946} + 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: 215093931285090854} + - {fileID: 215093929751695087} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &393664431783572941 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 393664431694634949} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa910a9e96e7447d686101b4c3a40c93, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &215093931285090854 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 393664431783572941} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &393664433283148036 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 393664431694634949} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &215093929751695087 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 393664433283148036} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches02.prefab.meta new file mode 100644 index 00000000..05bf3522 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0ae9e234a53b64c5ebf9212437354766 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches03.prefab new file mode 100644 index 00000000..7ac9bce8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7481274395319973141 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7481274395319973142} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7481274395319973142 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7481274395319973141} + 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: 6942415450935646095} + - {fileID: 6942415449071701009} + - {fileID: 6942415450151335849} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7481274394150350948 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7481274395319973142} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa910a9e96e7447d686101b4c3a40c93, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &6942415450935646095 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 7481274394150350948} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7481274394976276546 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7481274395319973142} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &6942415450151335849 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 7481274394976276546} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7481274396047780858 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7481274395319973142} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &6942415449071701009 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 7481274396047780858} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches03.prefab.meta new file mode 100644 index 00000000..928314d8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4251663ee94a84e459ec13d94745c9e3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket02.prefab new file mode 100644 index 00000000..01ac92bb --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3045365961846202775 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3045365961846202776} + - component: {fileID: 3045365961846202778} + - component: {fileID: 3045365961846202777} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3045365961846202776 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3045365961846202775} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3045365961846202778 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3045365961846202775} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &3045365961846202777 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3045365961846202775} + 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: 9c64a8ff7beaf47dca3f9212c07e7697, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket02.prefab.meta new file mode 100644 index 00000000..4a0adaa1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fad610c21c27e47d5a46cb25f3653f3b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket03.prefab new file mode 100644 index 00000000..63018e82 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3686663121084432983 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3686663121084432982} + - component: {fileID: 3686663121084432968} + - component: {fileID: 3686663121084432969} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3686663121084432982 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3686663121084432983} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3686663121084432968 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3686663121084432983} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &3686663121084432969 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3686663121084432983} + 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: db2d3d24334d5465880408d77b3db8e6, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket03.prefab.meta new file mode 100644 index 00000000..313d32ec --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f528a09e27a7e486a800c4356f10b387 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase01.prefab new file mode 100644 index 00000000..4fb7f441 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2700747532447803323 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2700747532447803300} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2700747532447803300 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2700747532447803323} + 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: 2517585787416133539} + - {fileID: 2517585786821516512} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2700747531721103432 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2700747532447803300} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa910a9e96e7447d686101b4c3a40c93, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2517585787416133539 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2700747531721103432} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2700747532349012747 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2700747532447803300} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2517585786821516512 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2700747532349012747} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase01.prefab.meta new file mode 100644 index 00000000..40b8182d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 2302cd5a86ac9444aad387742b22bd0d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase02.prefab new file mode 100644 index 00000000..fdb786a8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &667884692328640684 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 667884692328640685} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &667884692328640685 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 667884692328640684} + 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: 1066918717208893129} + - {fileID: 1066918716623083140} + - {fileID: 1066918718090417712} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &667884691659157979 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 667884692328640685} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1066918718090417712 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 667884691659157979} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &667884692540682530 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 667884692328640685} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa910a9e96e7447d686101b4c3a40c93, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1066918717208893129 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 667884692540682530} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &667884693084287343 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 667884692328640685} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1066918716623083140 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 667884693084287343} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase02.prefab.meta new file mode 100644 index 00000000..fde7e41a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 35e3497ccf3c249a293c8397aa579b08 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03.prefab new file mode 100644 index 00000000..34cc5057 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4851962600794781373 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4851962600794781378} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4851962600794781378 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4851962600794781373} + 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: 4962715252092858569} + - {fileID: 4962715251278004709} + - {fileID: 4962715252273759000} + - {fileID: 4962715251496258641} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4851962599581787379 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4851962600794781378} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4962715252273759000 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4851962599581787379} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4851962599737464610 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4851962600794781378} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 612148c362d624bf8bb86e23db7ef546, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &4962715252092858569 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 4851962599737464610} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4851962600334060474 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4851962600794781378} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4962715251496258641 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4851962600334060474} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4851962600586192398 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4851962600794781378} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4962715251278004709 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4851962600586192398} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03.prefab.meta new file mode 100644 index 00000000..ab6b0cf1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fe6fc7ac0f4f3462cab12ea6a0e46527 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03Rotate.prefab new file mode 100644 index 00000000..486626e8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8036534321227777255 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8036534321227777254} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8036534321227777254 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8036534321227777255} + 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: 7497710664050774863} + - {fileID: 7497710663640161382} + - {fileID: 7497710663868628222} + - {fileID: 7497710663789625235} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8036534320822416548 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8036534321227777254} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 612148c362d624bf8bb86e23db7ef546, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &7497710664050774863 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 8036534320822416548} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8036534320962296597 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8036534321227777254} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7497710663868628222 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8036534320962296597} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8036534321083570296 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8036534321227777254} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7497710663789625235 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8036534321083570296} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8036534321199414157 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8036534321227777254} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7497710663640161382 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8036534321199414157} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..7e826a19 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 108072730e71241d1b0e56d216e5457a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCaseRotate.prefab new file mode 100644 index 00000000..dc0b95ad --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7005995415685285210 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7005995415685285211} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7005995415685285211 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7005995415685285210} + 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: 7399681142650014647} + - {fileID: 7399681142824373772} + - {fileID: 7399681142971115561} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7005995416043802562 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7005995415685285211} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7399681142971115561 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7005995416043802562} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7005995416181893607 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7005995415685285211} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7399681142824373772 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7005995416181893607} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7005995416331414620 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7005995415685285211} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa910a9e96e7447d686101b4c3a40c93, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &7399681142650014647 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 7005995416331414620} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..ba5de840 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: dd2d9bf506c154232be277c2320cba15 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketLightSwitches.prefab new file mode 100644 index 00000000..acb63ab5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5264489113016697700 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5264489113016697703} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5264489113016697703 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5264489113016697700} + 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: 5658070936310825192} + - {fileID: 5658070935432772952} + - {fileID: 5658070934859650602} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5264489112432912131 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5264489113016697703} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa910a9e96e7447d686101b4c3a40c93, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5658070936310825192 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 5264489112432912131} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5264489113311238835 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5264489113016697703} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5658070935432772952 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5264489113311238835} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5264489113884094913 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5264489113016697703} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a2aa58bf0271148f093576f2f99f3dd5, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &5658070934859650602 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 5264489113884094913} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..e31344db --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7668e60f30c7543818351a1e939e2481 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/White/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt.meta new file mode 100644 index 00000000..391c6400 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: db78d72d0c65c461d8cc00f4f3004ae3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches01.prefab new file mode 100644 index 00000000..cd2fbe9e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3642802359636674085 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3642802359636674084} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3642802359636674084 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3642802359636674085} + 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: 3821141621502870786} + - {fileID: 3821141620770205016} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3642802360366850793 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3642802359636674084} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: eee31faaf5ecf46e7acdd815c8d48797, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3821141621502870786 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3642802360366850793} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3642802361107909299 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3642802359636674084} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3821141620770205016 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3642802361107909299} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..168c5715 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b7cd9015f61d240fca7ab550fa145ebc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches02.prefab new file mode 100644 index 00000000..0f3bfd1e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2700063069515007707 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2700063069515007704} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2700063069515007704 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2700063069515007707} + 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: 2518132810792057950} + - {fileID: 2518132811306854736} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2700063068910390971 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2700063069515007704} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2518132811306854736 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 2700063068910390971} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2700063069391379381 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2700063069515007704} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: eee31faaf5ecf46e7acdd815c8d48797, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2518132810792057950 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2700063069391379381} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..3a5222f5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a6a43eac3c71047289c475d6a266a05f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches03.prefab new file mode 100644 index 00000000..e2a9498a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &453486526492264411 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 453486526492264408} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &453486526492264408 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 453486526492264411} + 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: 126561394702755137} + - {fileID: 126561392808476383} + - {fileID: 126561393885234535} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &453486525036118698 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 453486526492264408} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: eee31faaf5ecf46e7acdd815c8d48797, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &126561394702755137 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 453486525036118698} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &453486525828801164 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 453486526492264408} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &126561393885234535 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 453486525828801164} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &453486526896920884 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 453486526492264408} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &126561392808476383 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 453486526896920884} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..71a6261b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d1914c47e52044eb6b65540cd4286672 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket02.prefab new file mode 100644 index 00000000..9978ced2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4846505971524488622 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4846505971524488625} + - component: {fileID: 4846505971524488627} + - component: {fileID: 4846505971524488624} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4846505971524488625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4846505971524488622} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4846505971524488627 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4846505971524488622} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &4846505971524488624 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4846505971524488622} + 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: 22753da51ac114cc49965661309b95b7, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket02.prefab.meta new file mode 100644 index 00000000..a6c889d7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: dfa894c037a724ec3a0382d8c941f8ad +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket03.prefab new file mode 100644 index 00000000..aee460d6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4703953568908846495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4703953568908846492} + - component: {fileID: 4703953568908846482} + - component: {fileID: 4703953568908846493} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4703953568908846492 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4703953568908846495} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4703953568908846482 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4703953568908846495} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &4703953568908846493 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4703953568908846495} + 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: c705f1790bcef43f6b49b4616346aab7, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket03.prefab.meta new file mode 100644 index 00000000..0fc8cf82 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d9efa74f7aced42b49351f971aafe689 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase01.prefab new file mode 100644 index 00000000..bfcb45df --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4696562797224507149 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4696562797224507150} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4696562797224507150 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4696562797224507149} + 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: 5091094556450418664} + - {fileID: 5091094554440933144} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4696562797152798723 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4696562797224507150} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: eee31faaf5ecf46e7acdd815c8d48797, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &5091094556450418664 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4696562797152798723} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4696562799170418931 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4696562797224507150} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5091094554440933144 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4696562799170418931} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..2baf48c6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0028efcb6c14c44aaa054dd59938ef86 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase02.prefab new file mode 100644 index 00000000..bd33de5d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4464962833578890291 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4464962833578890292} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4464962833578890292 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4464962833578890291} + 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: 4214249361831026775} + - {fileID: 4214249361113301168} + - {fileID: 4214249361955614146} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4464962831870757417 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4464962833578890292} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4214249361955614146 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4464962831870757417} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4464962831995340732 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4464962833578890292} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: eee31faaf5ecf46e7acdd815c8d48797, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4214249361831026775 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4464962831995340732} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4464962832704612187 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4464962833578890292} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4214249361113301168 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4464962832704612187} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..7d36457a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 910cf0980701247febfe878c455c85a8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03.prefab new file mode 100644 index 00000000..f981b77e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2182657492072143542 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2182657492072143543} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2182657492072143543 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2182657492072143542} + 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: 1855731612289211482} + - {fileID: 1855731611684767409} + - {fileID: 1855731611675136112} + - {fileID: 1855731613229687934} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2182657491173229461 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2182657492072143543} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1855731613229687934 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2182657491173229461} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2182657492088748977 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2182657492072143543} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 13002dc41b2444180981eb6e2543bf8f, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &1855731612289211482 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 2182657492088748977} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2182657492693180762 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2182657492072143543} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1855731611684767409 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2182657492693180762} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2182657492702558107 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2182657492072143543} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1855731611675136112 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2182657492702558107} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..a2077484 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3c66e947b77ac4b77938c229f34b2e44 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..b57fe197 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1144862369851670326 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1144862369851670327} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1144862369851670327 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1144862369851670326} + 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: 606269882933577776} + - {fileID: 606269884317018508} + - {fileID: 606269883853910753} + - {fileID: 606269883295690409} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1144862368279744103 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1144862369851670327} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &606269884317018508 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1144862368279744103} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1144862368776082698 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1144862369851670327} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &606269883853910753 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1144862368776082698} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1144862369342949698 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1144862369851670327} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &606269883295690409 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1144862369342949698} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1144862369671507931 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1144862369851670327} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 13002dc41b2444180981eb6e2543bf8f, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &606269882933577776 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 1144862369671507931} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..1bb9a945 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 18d34ce942ae543f090c1cc46cb25ae9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..5dac542e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1147732557479090899 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1147732557479090898} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1147732557479090898 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1147732557479090899} + 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: 605498662437606462} + - {fileID: 605498662619632005} + - {fileID: 605498662489814944} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1147732557716502126 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1147732557479090898} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &605498662619632005 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1147732557716502126} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1147732557837668427 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1147732557479090898} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &605498662489814944 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1147732557837668427} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1147732557856256981 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1147732557479090898} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: eee31faaf5ecf46e7acdd815c8d48797, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &605498662437606462 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1147732557856256981} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..580ecee6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 616bc2ace883c4b649a13ebb89bc0e32 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..4a37ad51 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2894509541176983 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2894509541176968} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2894509541176968 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2894509541176983} + 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: 540698001187617025} + - {fileID: 540698002605656895} + - {fileID: 540698002060909282} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2894509569453268 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2894509541176968} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &540698002605656895 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2894509569453268} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2894510147763465 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2894509541176968} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 172c43af131f04736841dee08d20ebc7, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &540698002060909282 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2894510147763465} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2894511020728042 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2894509541176968} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: eee31faaf5ecf46e7acdd815c8d48797, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &540698001187617025 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 2894511020728042} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..dd97a601 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 018d984dfe2e143d78fec0b664b8e68a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/128x128/WhiteDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048.meta new file mode 100644 index 00000000..73d7c63a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3acd5abf40e964738b9f223bef32576e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black.meta new file mode 100644 index 00000000..953e254e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d232ae9fc79fc444c846fb62ee1d7795 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches01.prefab new file mode 100644 index 00000000..02b38f1c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches01.prefab @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2101451135063257101 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1612862615845415607} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1612862615845415607 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2101451135063257101} + 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: 6809767155445347689} + - {fileID: 6809767154902345473} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6416396197359800962 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1612862615845415607} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &6809767155445347689 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 6416396197359800962} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6416396197894734058 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1612862615845415607} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &6809767154902345473 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 6416396197894734058} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches01.prefab.meta new file mode 100644 index 00000000..3dd7b7ac --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e8e293ac8bea9492f99d018a316a7086 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches02.prefab new file mode 100644 index 00000000..e5e9de37 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches02.prefab @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4156090560338200515 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3667820108411067769} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3667820108411067769 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4156090560338200515} + 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: 4064561946393098148} + - {fileID: 2474578445320111473} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2728564003987628698 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3667820108411067769} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2474578445320111473 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 2728564003987628698} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4603383551783194703 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3667820108411067769} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4064561946393098148 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4603383551783194703} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches02.prefab.meta new file mode 100644 index 00000000..3cf17ec4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d172e9a794f9c4c4980f4ae5ac52ba55 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches03.prefab new file mode 100644 index 00000000..cba64172 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches03.prefab @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3543585548616252138 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3543585548616252139} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3543585548616252139 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3543585548616252138} + 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: 3938364017342003900} + - {fileID: 5771652101472560296} + - {fileID: 5771652101065829229} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3543585549806001495 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3543585548616252139} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c97b86ef416634108b56be695cc2e5d0, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3938364017342003900 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3543585549806001495} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6310596945980539715 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3543585548616252139} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &5771652101472560296 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 6310596945980539715} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6310596946379082886 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3543585548616252139} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &5771652101065829229 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 6310596946379082886} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches03.prefab.meta new file mode 100644 index 00000000..3465962a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3ade66a8ebc1747beb5cea86864dd20d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket02.prefab new file mode 100644 index 00000000..8ae065e2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1232135871692189504 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1896786890276402682} + - component: {fileID: 3313917282115517023} + - component: {fileID: 727772777189543573} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1896786890276402682 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232135871692189504} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3313917282115517023 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232135871692189504} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &727772777189543573 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232135871692189504} + 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: 1f9d691951cbe42cebd850485b6a6264, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket02.prefab.meta new file mode 100644 index 00000000..191dbf8d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e2c8e1c811e554af08a31a117c27289e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket03.prefab new file mode 100644 index 00000000..7e53461e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1682949979569866451 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2022356726727253097} + - component: {fileID: 3152239566224364492} + - component: {fileID: 890576272733562630} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2022356726727253097 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1682949979569866451} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3152239566224364492 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1682949979569866451} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &890576272733562630 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1682949979569866451} + 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: d79e4abebad4041789b088998ae1c2e1, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket03.prefab.meta new file mode 100644 index 00000000..21094fa6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7d1f130ac09034be29a3fa28e5a15b19 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase01.prefab new file mode 100644 index 00000000..1b5e70f5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase01.prefab @@ -0,0 +1,159 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2982036027512199786 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2461640900082155728} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2461640900082155728 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2982036027512199786} + 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: 5423145981388733356} + - {fileID: 5423145980756651621} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5532773245880523847 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2461640900082155728} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &5423145981388733356 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 5532773245880523847} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5532773246470654350 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2461640900082155728} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5423145980756651621 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5532773246470654350} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase01.prefab.meta new file mode 100644 index 00000000..e35bb37a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3b68fb8ef3f964af897a2bbcc850111b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase02.prefab new file mode 100644 index 00000000..7709aeff --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase02.prefab @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6089898046636712355 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6089898046636712356} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6089898046636712356 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6089898046636712355} + 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: 5983335005775970496} + - {fileID: 5983335007494022040} + - {fileID: 5983335005576115003} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6089898044611511411 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6089898046636712356} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5983335007494022040 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6089898044611511411} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6089898046329628459 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6089898046636712356} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5983335005775970496 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6089898046329628459} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6089898046521038032 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6089898046636712356} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5983335005576115003 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6089898046521038032} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase02.prefab.meta new file mode 100644 index 00000000..7de977ca --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 17a3fde0e2b394ae3966ed8d112d4da5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03.prefab new file mode 100644 index 00000000..c0742e8b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03.prefab @@ -0,0 +1,289 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5587153173831525808 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5587153173831525809} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5587153173831525809 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5587153173831525808} + 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: 5333167169063072309} + - {fileID: 5333167169902823728} + - {fileID: 5333167170324202026} + - {fileID: 5333167170261631306} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5587153173233952193 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5587153173831525809} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5333167170324202026 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5587153173233952193} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5587153173321426593 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5587153173831525809} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5333167170261631306 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5587153173321426593} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5587153173688626907 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5587153173831525809} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5333167169902823728 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5587153173688626907} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5587153174528710110 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5587153173831525809} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: d90c4ce794ee44d29be5951e9345170a, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &5333167169063072309 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 5587153174528710110} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03.prefab.meta new file mode 100644 index 00000000..42954eca --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8e7d06fe2a3894b9687581eb5100876f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03Rotate.prefab new file mode 100644 index 00000000..e9a67ef3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03Rotate.prefab @@ -0,0 +1,289 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1012881758796806626 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1012881758796806627} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1012881758796806627 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1012881758796806626} + 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: 685888456557424231} + - {fileID: 685888455719753058} + - {fileID: 685888455297851000} + - {fileID: 685888455344561432} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1012881758084401548 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1012881758796806627} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8bb7ce128d6d74077a4b6e7e757e5009, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &685888456557424231 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 1012881758084401548} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1012881758922404489 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1012881758796806627} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &685888455719753058 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1012881758922404489} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1012881759305988851 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1012881758796806627} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &685888455344561432 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1012881759305988851} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1012881759377602963 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1012881758796806627} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &685888455297851000 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1012881759377602963} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..f46e1f53 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b9e6f144815e9457a9a64e4cb4a69d10 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCaseRotate.prefab new file mode 100644 index 00000000..a1fab5f3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCaseRotate.prefab @@ -0,0 +1,226 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6724083591365172427 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6724083591365172426} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6724083591365172426 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6724083591365172427} + 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: 6546552823951760541} + - {fileID: 6546552824088200758} + - {fileID: 367033430085465602} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &188394208079548905 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6724083591365172426} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &367033430085465602 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 188394208079548905} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6724083592209031645 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6724083591365172426} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6546552824088200758 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6724083592209031645} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6724083592320056182 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6724083591365172426} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c97b86ef416634108b56be695cc2e5d0, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &6546552823951760541 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6724083592320056182} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..7b08f4c7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1052b8f4b28044c2b81ec415878aa62f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketLightSwitches.prefab new file mode 100644 index 00000000..20edf950 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketLightSwitches.prefab @@ -0,0 +1,222 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7214420445372436001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7214420445372436000} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7214420445372436000 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7214420445372436001} + 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: 7175496818793270903} + - {fileID: 7175496818656826588} + - {fileID: 7175496818879507583} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7214420444235910036 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7214420445372436000} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &7175496818879507583 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 7214420444235910036} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7214420444347312540 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7214420445372436000} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &7175496818793270903 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 7214420444347312540} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7214420444458332983 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7214420445372436000} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7175496818656826588 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7214420444458332983} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..8b6a4404 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/Black/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt.meta new file mode 100644 index 00000000..58423487 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6582024bcaa44df684076a73270074b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches01.prefab new file mode 100644 index 00000000..aea83521 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9108295051740277906 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8443399086351922728} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8443399086351922728 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9108295051740277906} + 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: 4454015634146404854} + - {fileID: 4454015633607605150} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4198884151243853341 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8443399086351922728} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 242a1ccd067cc4a04a216340028b4d95, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4454015634146404854 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4198884151243853341} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4198884151774600309 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8443399086351922728} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &4454015633607605150 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4198884151774600309} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..ddf0d9d0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7553446adc3c74ffc8c0cd2d40f72182 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches02.prefab new file mode 100644 index 00000000..c269703a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &141486747564434044 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 773908705831860422} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &773908705831860422 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 141486747564434044} + 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: 14626410597732891} + - {fileID: 1877078376325587150} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &556563826254362096 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 773908705831860422} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 242a1ccd067cc4a04a216340028b4d95, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &14626410597732891 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 556563826254362096} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2127389712003450661 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 773908705831860422} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &1877078376325587150 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 2127389712003450661} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..d99fdc55 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 563c59fc144294fbd9e2e361c507910f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches03.prefab new file mode 100644 index 00000000..0a3ceecd --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5421250576049597309 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5421250576049597308} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5421250576049597308 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5421250576049597309} + 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: 5527781309393562411} + - {fileID: 3028804772196218175} + - {fileID: 3028804771789257466} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3279395245841584852 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5421250576049597308} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3028804772196218175 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3279395245841584852} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3279395246239964433 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5421250576049597308} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &3028804771789257466 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 3279395246239964433} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5421250577005743296 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5421250576049597308} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 7ab6d3fa8fd52423aa46a13850b1e75b, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5527781309393562411 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 5421250577005743296} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..d30d40f5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 6edf9af2949a042cc8fdd4500053d716 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket02.prefab new file mode 100644 index 00000000..d7ada31e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &733849759224221116 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 100478712593553158} + - component: {fileID: 3948288316598622371} + - component: {fileID: 1238441553370770537} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &100478712593553158 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 733849759224221116} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3948288316598622371 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 733849759224221116} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &1238441553370770537 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 733849759224221116} + 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: 6f753b8d6f0fe40728f43bd79e1c427c, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket02.prefab.meta new file mode 100644 index 00000000..7dd58eb0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 29bada906fc964cb2ae07b25f667d2d7 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket03.prefab new file mode 100644 index 00000000..b2ef5f6b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6075557822083909085 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6853184554364575591} + - component: {fileID: 7544862669406671042} + - component: {fileID: 5715151311558140936} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6853184554364575591 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6075557822083909085} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &7544862669406671042 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6075557822083909085} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &5715151311558140936 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6075557822083909085} + 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: 90c1cf332475c4c78bdbaec8510db520, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket03.prefab.meta new file mode 100644 index 00000000..a53267f9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0c579d889e58e47da86813d32a4c40e9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase01.prefab new file mode 100644 index 00000000..fea6434e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6742786332020054587 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6257998922809753729} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6257998922809753729 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6742786332020054587} + 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: 4590156547327343613} + - {fileID: 4590156546997251636} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4051333601572969494 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6257998922809753729} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 242a1ccd067cc4a04a216340028b4d95, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4590156547327343613 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4051333601572969494} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4051333601928219103 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6257998922809753729} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4590156546997251636 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4051333601928219103} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..0dfa7e8d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5b0cba41173b8401b9ff6bdc04ad6e9f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase02.prefab new file mode 100644 index 00000000..e575aa18 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3255887362242850268 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3255887362242850267} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3255887362242850267 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3255887362242850268} + 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: 3073008776390151359} + - {fileID: 3073008775760474087} + - {fileID: 3073008775923072836} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3255887361901980500 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3255887362242850267} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 242a1ccd067cc4a04a216340028b4d95, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3073008776390151359 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3255887361901980500} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3255887362360613039 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3255887362242850267} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3073008775923072836 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3255887362360613039} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3255887362531592204 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3255887362242850267} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3073008775760474087 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3255887362531592204} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..db819584 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5055f9fd04c5544c6bd69cb8286efc4b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03.prefab new file mode 100644 index 00000000..951604c9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9191170955820942883 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9191170955820942882} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9191170955820942882 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9191170955820942883} + 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: 8648917019710935462} + - {fileID: 8648917020682857123} + - {fileID: 8648917020563726777} + - {fileID: 8648917020375294681} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &9191170956215504200 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9191170955820942882} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8648917020682857123 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9191170956215504200} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9191170956301338194 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9191170955820942882} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8648917020563726777 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9191170956301338194} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9191170956531451186 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9191170955820942882} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8648917020375294681 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9191170956531451186} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9191170957187626573 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9191170955820942882} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3314014b0eb6c4c9ca7e3607d1e0d0a3, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &8648917019710935462 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 9191170957187626573} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..d74700ac --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0d32797a420e7421e9515c607e0e706a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..5bf153c5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5736137878309436843 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5736137878309436842} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5736137878309436842 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5736137878309436843} + 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: 5192758669088975406} + - {fileID: 5192758668184129835} + - {fileID: 5192758668333177393} + - {fileID: 5192758668421962065} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5736137878084095429 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5736137878309436842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 22548815860ac466096f1820ac080c56, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &5192758669088975406 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 5736137878084095429} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5736137878742924986 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5736137878309436842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5192758668421962065 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5736137878742924986} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5736137878806281690 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5736137878309436842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5192758668333177393 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5736137878806281690} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5736137878989141696 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5736137878309436842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5192758668184129835 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5736137878989141696} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..6aad3552 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 696e0fc47245a44cf884b05a3c944c58 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..c07209ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3433653052191612493 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3433653052191612492} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3433653052191612492 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3433653052191612493} + 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: 2894812076385115675} + - {fileID: 2894812076538070192} + - {fileID: 8638328296840656004} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3433653053221069659 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3433653052191612492} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2894812076538070192 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3433653053221069659} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3433653053349132784 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3433653052191612492} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 7ab6d3fa8fd52423aa46a13850b1e75b, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &2894812076385115675 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3433653053349132784} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8100630666357052271 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3433653052191612492} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8638328296840656004 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8100630666357052271} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..b80b2cdb --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 20e58a8555fcf49929e4175f3f59c435 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..b1b28f41 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7757223452044476650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7757223452044476651} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7757223452044476651 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7757223452044476650} + 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: 7795037010532745404} + - {fileID: 7795037010639575575} + - {fileID: 7795037009806860980} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7757223450737688060 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7757223452044476651} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7795037010639575575 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7757223450737688060} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7757223450886711127 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7757223452044476651} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 242a1ccd067cc4a04a216340028b4d95, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &7795037010532745404 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 7757223450886711127} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7757223451570652511 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7757223452044476651} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e5f056d5d1ab84964ae8d7e9e4bcc0fd, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &7795037009806860980 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 7757223451570652511} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..b0abf2f2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 49f55b94843c84fdcaa685a2877a2e0d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/BlackDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White.meta new file mode 100644 index 00000000..bd5260a8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26d55a31485954125b890c59e5fcead2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches01.prefab new file mode 100644 index 00000000..9a93da54 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9158655320985563941 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8381696787620407711} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8381696787620407711 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9158655320985563941} + 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: 4373815426315826753} + - {fileID: 4373815425781146665} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4267249198691307946 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8381696787620407711} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: de2e72f3f68fe4158b3e40e992b6c9e7, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4373815426315826753 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4267249198691307946} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4267249199234565058 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8381696787620407711} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &4373815425781146665 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4267249199234565058} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches01.prefab.meta new file mode 100644 index 00000000..62342e15 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b668065cdb3474cc7b77ca4ec18d455e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches02.prefab new file mode 100644 index 00000000..1b125514 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &418348482588699552 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1046406413975662874} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1046406413975662874 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 418348482588699552} + 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: 291355653665020871} + - {fileID: 2176457009706117394} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &252662348034882604 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1046406413975662874} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: de2e72f3f68fe4158b3e40e992b6c9e7, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &291355653665020871 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 252662348034882604} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1855181106161929977 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1046406413975662874} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2176457009706117394 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 1855181106161929977} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches02.prefab.meta new file mode 100644 index 00000000..94df9c8f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 2c45e016b68b0431f9d20d686ecd52a5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches03.prefab new file mode 100644 index 00000000..b4bc20ed --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &539061245988382194 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 539061245988382195} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &539061245988382195 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 539061245988382194} + 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: 68002757943109028} + - {fileID: 7372249727653591984} + - {fileID: 7372249728051967093} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &539061244797076047 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 539061245988382195} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e06e25942d056446eb6b009e04908125, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &68002757943109028 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 539061244797076047} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7045256459344188318 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 539061245988382195} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &7372249728051967093 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 7045256459344188318} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7045256459751152731 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 539061245988382195} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &7372249727653591984 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 7045256459751152731} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches03.prefab.meta new file mode 100644 index 00000000..39a44e85 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e53611efed90b4d3db0de35243a59820 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket02.prefab new file mode 100644 index 00000000..3b9fff46 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4431903092072918157 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3948136029902763575} + - component: {fileID: 100560613352765842} + - component: {fileID: 2774696833754697048} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3948136029902763575 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4431903092072918157} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &100560613352765842 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4431903092072918157} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &2774696833754697048 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4431903092072918157} + 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: 5ebfbe070662e48e4a35a696cda0a013, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket02.prefab.meta new file mode 100644 index 00000000..209799dd --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9aa0e7d5e754145ec8361c9d727c9cfe +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket03.prefab new file mode 100644 index 00000000..8082e6c6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &945208424602566313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 456515722358826003} + - component: {fileID: 3601196573999705014} + - component: {fileID: 1593977940403281788} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &456515722358826003 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 945208424602566313} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3601196573999705014 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 945208424602566313} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &1593977940403281788 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 945208424602566313} + 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: 594cfd587ab9f41eeb0ffd14ed0439af, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket03.prefab.meta new file mode 100644 index 00000000..f3e2208c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1d6a2d50a0f3a476c905e020bf695a0c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase01.prefab new file mode 100644 index 00000000..c59deba1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8880082337538494435 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8104143394324059481} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8104143394324059481 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8880082337538494435} + 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: 1809550572680441381} + - {fileID: 1809550572994280428} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2204065434898062343 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8104143394324059481} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1809550572994280428 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2204065434898062343} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2204065435237059022 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8104143394324059481} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: de2e72f3f68fe4158b3e40e992b6c9e7, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &1809550572680441381 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2204065435237059022} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase01.prefab.meta new file mode 100644 index 00000000..b9443b35 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1525131b6568f4bbd8d324ca64c577d4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase02.prefab new file mode 100644 index 00000000..3e22b01e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &766859538852164623 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 766859538852164616} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &766859538852164616 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 766859538852164623} + 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: 949933848746562924} + - {fileID: 949933846958208564} + - {fileID: 949933848806909591} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &766859538970968444 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 766859538852164616} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &949933848806909591 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 766859538970968444} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &766859539023000199 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 766859538852164616} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: de2e72f3f68fe4158b3e40e992b6c9e7, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &949933848746562924 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 766859539023000199} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &766859540811289055 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 766859538852164616} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &949933846958208564 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 766859540811289055} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase02.prefab.meta new file mode 100644 index 00000000..4179b27d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e81bad511e68c4f25a20af72828e036f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03.prefab new file mode 100644 index 00000000..c5bec406 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9184189684909511550 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9184189684909511551} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9184189684909511551 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9184189684909511550} + 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: 8718531989398717691} + - {fileID: 8718531988089176062} + - {fileID: 8718531988539651300} + - {fileID: 8718531988442740612} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &9184189684530602768 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9184189684909511551} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8943380cb53f1471a8b00a24f7b202db, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &8718531989398717691 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 9184189684530602768} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9184189685423166223 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9184189684909511551} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8718531988539651300 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9184189685423166223} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9184189685478396015 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9184189684909511551} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8718531988442740612 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9184189685478396015} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9184189685840353301 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9184189684909511551} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8718531988089176062 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9184189685840353301} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03.prefab.meta new file mode 100644 index 00000000..5cc2fd00 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b5e2ab2af4f734d8c91993201c86384a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03Rotate.prefab new file mode 100644 index 00000000..e072a603 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &164250256236037109 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 164250256236037108} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &164250256236037108 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 164250256236037109} + 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: 418045049324721264} + - {fileID: 418045048216530805} + - {fileID: 418045048570569839} + - {fileID: 418045048398259983} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &164250255001465755 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 164250256236037108} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 84c62870130314aab93e3c0140d039a8, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &418045049324721264 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 164250255001465755} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &164250255722120068 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 164250256236037108} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &418045048570569839 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 164250255722120068} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &164250255936635108 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 164250256236037108} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &418045048398259983 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 164250255936635108} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &164250256109979806 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 164250256236037108} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &418045048216530805 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 164250256109979806} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..7f4a4ec1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 15833557200d64eac9f49fe1acd52fe3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCaseRotate.prefab new file mode 100644 index 00000000..1389e70e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9172931784141608890 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9172931784141608891} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9172931784141608891 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9172931784141608890} + 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: 8702772686956632044} + - {fileID: 8702772687088880967} + - {fileID: 2813487837886020979} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2342220580321663640 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9172931784141608891} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2813487837886020979 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2342220580321663640} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9172931782828026540 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9172931784141608891} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8702772687088880967 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9172931782828026540} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9172931782985183239 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9172931784141608891} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e06e25942d056446eb6b009e04908125, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &8702772686956632044 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 9172931782985183239} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..296387e3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c3588d84549804500905d9b00d4d39c3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketLightSwitches.prefab new file mode 100644 index 00000000..8336ce82 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5521806659532223487 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5521806659532223486} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5521806659532223486 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5521806659532223487} + 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: 5416665537577939881} + - {fileID: 5416665537730898178} + - {fileID: 5416665537959858593} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5521806660266358346 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5521806659532223486} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &5416665537959858593 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 5521806660266358346} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5521806660495052521 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5521806659532223486} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 05fee7f37582e475fa4fc9a50738a4d1, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5416665537730898178 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5521806660495052521} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5521806660623111234 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5521806659532223486} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: de2e72f3f68fe4158b3e40e992b6c9e7, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5416665537577939881 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 5521806660623111234} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..a4918b69 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4390d6bba874b4870bc50372b69a965b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/White/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt.meta new file mode 100644 index 00000000..3501797d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3fb3a3318f0514dcc9c78a63c73dde64 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches01.prefab new file mode 100644 index 00000000..27f92ca5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6941921773922028805 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7718459194602182591} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7718459194602182591 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6941921773922028805} + 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: 2593603461653481569} + - {fileID: 2593603462196812297} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2626986054809009634 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7718459194602182591} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2593603462196812297 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2626986054809009634} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2626986055343615882 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7718459194602182591} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4d317c181f73d493f8b059fce68728b0, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2593603461653481569 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2626986055343615882} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..b59cdf72 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e57c27531019a4262a339acb5999eb49 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches02.prefab new file mode 100644 index 00000000..ae246522 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4249176244879974878 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3581430310994787172} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3581430310994787172 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4249176244879974878} + 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: 4268643467231351225} + - {fileID: 2378475562293109612} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2776666607434384519 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3581430310994787172} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2378475562293109612 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 2776666607434384519} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4375244716554368594 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3581430310994787172} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4d317c181f73d493f8b059fce68728b0, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4268643467231351225 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4375244716554368594} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..e9e2d38d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ba4a49445c07a4f21a28863d57960492 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches03.prefab new file mode 100644 index 00000000..97af871a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4479324976381924013 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4479324976381924012} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4479324976381924012 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4479324976381924013} + 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: 4153298694627955451} + - {fileID: 6853806955703930095} + - {fileID: 6853806955297194794} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4479324975359718672 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4479324976381924012} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 6ce10d89068124af3944e22b5243712f, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4153298694627955451 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4479324975359718672} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6383610998123195140 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4479324976381924012} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &6853806955703930095 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 6383610998123195140} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6383610998521734337 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4479324976381924012} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &6853806955297194794 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 6383610998521734337} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..571e0733 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: bcbf28884fa494b69810308bf6ca2a43 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket02.prefab new file mode 100644 index 00000000..feb11fa8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8247812095346404020 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8736365121782853646} + - component: {fileID: 5661612279808245675} + - component: {fileID: 7599508909394840417} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8736365121782853646 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8247812095346404020} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5661612279808245675 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8247812095346404020} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &7599508909394840417 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8247812095346404020} + 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: 51a6bd3267e6d49458d0611dc9508170, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket02.prefab.meta new file mode 100644 index 00000000..871da15d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 22739474cc0304062b86663f61c7be1e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket03.prefab new file mode 100644 index 00000000..a3b68630 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7371979726020755910 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7855782071127055228} + - component: {fileID: 6533179041126946009} + - component: {fileID: 9029282879925313555} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7855782071127055228 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7371979726020755910} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6533179041126946009 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7371979726020755910} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &9029282879925313555 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7371979726020755910} + 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: fda19c87e95b645b4a0329dce4ca6fcb, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket03.prefab.meta new file mode 100644 index 00000000..70ef2c5a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 30a40009b4bc343918b441778fa7a574 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase01.prefab new file mode 100644 index 00000000..b8be85e0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1676374434817374425 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2020001898461241955} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2020001898461241955 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676374434817374425} + 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: 8458638423150745887} + - {fileID: 8458638422398700758} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8280333734220381940 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2020001898461241955} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4d317c181f73d493f8b059fce68728b0, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8458638423150745887 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8280333734220381940} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8280333734930475837 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2020001898461241955} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8458638422398700758 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8280333734930475837} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..135c76ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 669c621ade35e47bc857dbef78b75992 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase02.prefab new file mode 100644 index 00000000..3705606f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6468326217425854583 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6468326217425854576} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6468326217425854576 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6468326217425854583} + 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: 6795550384380969236} + - {fileID: 6795550382613652044} + - {fileID: 6795550384051319535} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6468326217223333631 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6468326217425854576} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4d317c181f73d493f8b059fce68728b0, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &6795550384380969236 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6468326217223333631} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6468326217544668420 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6468326217425854576} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6795550384051319535 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6468326217544668420} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6468326218990716327 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6468326217425854576} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6795550382613652044 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6468326218990716327} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..010ab7d5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b65b0c54dd8374c62ac4b82ceee5e95c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03.prefab new file mode 100644 index 00000000..d21cee52 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2588358205820593966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2588358205820593967} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2588358205820593967 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2588358205820593966} + 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: 2621389025605087403} + - {fileID: 2621389026646461358} + - {fileID: 2621389026463629492} + - {fileID: 2621389026282931156} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2588358206231407685 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2588358205820593967} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2621389026646461358 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2588358206231407685} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2588358206380418911 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2588358205820593967} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2621389026463629492 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2588358206380418911} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2588358206586545215 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2588358205820593967} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2621389026282931156 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2588358206586545215} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2588358207272458048 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2588358205820593967} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0199da919af3a41a69113400be55ca76, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &2621389025605087403 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 2588358207272458048} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..6e21b203 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: da34c89f95a114aad9b2fa94607d0607 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..849273d1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2897514129424362843 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2897514129424362842} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2897514129424362842 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2897514129424362843} + 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: 3439818566032472798} + - {fileID: 3439818564926325211} + - {fileID: 3439818565310220993} + - {fileID: 3439818565104388513} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2897514129266171189 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2897514129424362842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e75191f67a6ac47b28c01f7fc84d2a8b, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &3439818566032472798 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 2897514129266171189} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2897514130021903658 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2897514129424362842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3439818565310220993 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2897514130021903658} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2897514130202832458 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2897514129424362842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3439818565104388513 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2897514130202832458} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2897514130372503088 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2897514129424362842} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3439818564926325211 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2897514130372503088} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..3844edea --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 943a70f3798324b9e9dc6ecf1bd26f57 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..c773be38 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6245708478024997082 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6245708478024997083} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6245708478024997083 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6245708478024997082} + 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: 5847800662589462668} + - {fileID: 5847800662457467431} + - {fileID: 1074810370136617491} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &675758932515051000 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6245708478024997083} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1074810370136617491 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 675758932515051000} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6245708479115116391 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6245708478024997083} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 6ce10d89068124af3944e22b5243712f, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5847800662589462668 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6245708479115116391} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6245708479272527308 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6245708478024997083} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5847800662457467431 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6245708479272527308} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..28562dea --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c055fad2f147e452db926da380a999f9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..4e6a982c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3444761114837609934 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3444761114837609935} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3444761114837609935 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3444761114837609934} + 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: 2901591972707462552} + - {fileID: 2901591972864620339} + - {fileID: 2901591972618047376} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3444761115861782744 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3444761114837609935} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2901591972864620339 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3444761115861782744} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3444761115994032755 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3444761114837609935} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4d317c181f73d493f8b059fce68728b0, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &2901591972707462552 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3444761115994032755} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3444761116108613755 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3444761114837609935} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 4e755ed40593748b08091b681ce4b93f, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2901591972618047376 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3444761116108613755} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..3ffcdd14 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3052f592848ca46489fd1dd04b1f95e2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/2048x2048/WhiteDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256.meta b/Assets/SocketsAndSwitches/Prefabs/256x256.meta new file mode 100644 index 00000000..fb0be714 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dd25421d70d354138b9d5c4383be28cd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black.meta new file mode 100644 index 00000000..9c167da6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 12b83ce10598b4b26a2923eae2f1b66f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches01.prefab new file mode 100644 index 00000000..f7d72c61 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2478846735106897475 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2478846735106897476} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2478846735106897476 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2478846735106897475} + 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: 2732586036553759523} + - {fileID: 2732586036909843342} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2478846734366229605 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2478846735106897476} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2732586036909843342 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2478846734366229605} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2478846734731041992 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2478846735106897476} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e6d2579522ab14bd695cc970307168f5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2732586036553759523 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2478846734731041992} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches01.prefab.meta new file mode 100644 index 00000000..4a15767e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 09c9e5a93ac4e494e8583eca6ff4da65 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches02.prefab new file mode 100644 index 00000000..ecd530f7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7036811823842775527 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7036811823842775528} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7036811823842775528 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7036811823842775527} + 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: 7362679981970877079} + - {fileID: 7362679981098970936} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7036811824104050044 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7036811823842775528} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e6d2579522ab14bd695cc970307168f5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &7362679981970877079 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 7036811824104050044} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7036811824975956179 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7036811823842775528} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &7362679981098970936 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 7036811824975956179} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches02.prefab.meta new file mode 100644 index 00000000..f9688e4a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c929ce33847fb49db924f0143cbcfed2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches03.prefab new file mode 100644 index 00000000..c7668d2d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4148613356517837656 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4148613356517837657} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4148613356517837657 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4148613356517837656} + 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: 4474445677238187907} + - {fileID: 4474445677750446827} + - {fileID: 4474445677373138162} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4148613357758680320 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4148613356517837657} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &4474445677750446827 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4148613357758680320} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4148613358102692633 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4148613356517837657} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &4474445677373138162 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 4148613358102692633} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4148613358237323368 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4148613356517837657} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e6d2579522ab14bd695cc970307168f5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4474445677238187907 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4148613358237323368} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches03.prefab.meta new file mode 100644 index 00000000..8c5fb868 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 08947a1e4fac04c9cb13d69891b7d0c2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket02.prefab new file mode 100644 index 00000000..48d4ce1d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &188529300400993732 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 188529300400993733} + - component: {fileID: 188529300400993787} + - component: {fileID: 188529300400993786} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &188529300400993733 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 188529300400993732} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &188529300400993787 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 188529300400993732} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &188529300400993786 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 188529300400993732} + 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: a45feed7816c74a75aff7de21440162c, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket02.prefab.meta new file mode 100644 index 00000000..74d36639 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 37065116d40494297b5015acc5fa9180 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket03.prefab new file mode 100644 index 00000000..c5e02831 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3717523826948198543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3717523826948198544} + - component: {fileID: 3717523826948198546} + - component: {fileID: 3717523826948198545} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3717523826948198544 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3717523826948198543} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3717523826948198546 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3717523826948198543} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &3717523826948198545 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3717523826948198543} + 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: ca22132a633d54d868b0adc66c0f23aa, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket03.prefab.meta new file mode 100644 index 00000000..13ce7f3b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c1eb33b9b24754096805593196ac4661 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase01.prefab new file mode 100644 index 00000000..5b024293 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6773943096089535551 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6773943096089535548} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6773943096089535548 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6773943096089535551} + 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: 6452347812048362426} + - {fileID: 6452347812356509783} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6773943096649070524 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6773943096089535548} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6452347812356509783 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6773943096649070524} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6773943096956959825 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6773943096089535548} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e6d2579522ab14bd695cc970307168f5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &6452347812048362426 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 6773943096956959825} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase01.prefab.meta new file mode 100644 index 00000000..597655f8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a564289202f304099a3e6949827bed2a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase02.prefab new file mode 100644 index 00000000..a5a95357 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3731594890788339773 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3731594890788339774} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3731594890788339774 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3731594890788339773} + 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: 3766118374019123681} + - {fileID: 3766118374699664242} + - {fileID: 3766118374956208796} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3731594890399413623 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3731594890788339774} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3766118374956208796 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3731594890399413623} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3731594890614072473 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3731594890788339774} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3766118374699664242 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3731594890614072473} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3731594891336494602 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3731594890788339774} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e6d2579522ab14bd695cc970307168f5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3766118374019123681 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3731594891336494602} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase02.prefab.meta new file mode 100644 index 00000000..b4324170 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 67b5c99b265994ee385c1c080f27e408 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03.prefab new file mode 100644 index 00000000..4f8a0f5d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6701766152054984100 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6701766152054984099} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6701766152054984099 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6701766152054984100} + 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: 6524534656676211188} + - {fileID: 6524534657908488818} + - {fileID: 6524534656524142152} + - {fileID: 6524534657324379021} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6701766151030005145 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6701766152054984099} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6524534657908488818 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6701766151030005145} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6701766151572425830 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6701766152054984099} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6524534657324379021 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6701766151572425830} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6701766152262274591 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6701766152054984099} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 45a167b46564441a9aa859d9c169188b, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &6524534656676211188 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 6701766152262274591} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6701766152380850595 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6701766152054984099} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6524534656524142152 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6701766152380850595} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03.prefab.meta new file mode 100644 index 00000000..a6b11909 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f6355295c8c5e4da4ba6171e76b85a58 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03Rotate.prefab new file mode 100644 index 00000000..fc920248 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4894564187005480677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4894564187005480676} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4894564187005480676 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4894564187005480677} + 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: 4928703048457766745} + - {fileID: 4928703048229625018} + - {fileID: 4928703047835473743} + - {fileID: 4928703049721527527} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4894564186936597260 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4894564187005480676} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4928703049721527527 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4894564186936597260} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4894564188200411314 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4894564187005480676} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 45a167b46564441a9aa859d9c169188b, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &4928703048457766745 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 4894564188200411314} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4894564188462119761 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4894564187005480676} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4928703048229625018 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4894564188462119761} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4894564188856463524 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4894564187005480676} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4928703047835473743 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4894564188856463524} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..877b5ba6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f11352fae5b054d7d9a5387ee288342e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCaseRotate.prefab new file mode 100644 index 00000000..4cd6d97c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5480018869358863936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5480018869358863939} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5480018869358863939 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5480018869358863936} + 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: 5442117866600015760} + - {fileID: 5442117866711703775} + - {fileID: 5442117867128849691} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5480018869629805296 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5480018869358863939} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5442117867128849691 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5480018869629805296} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5480018870080440116 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5480018869358863939} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5442117866711703775 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5480018870080440116} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5480018870158573691 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5480018869358863939} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e6d2579522ab14bd695cc970307168f5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5442117866600015760 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 5480018870158573691} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..3745cc8f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 74786554fe4eb48608dc6702164ef7f1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketLightSwitches.prefab new file mode 100644 index 00000000..ca2b437f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4006137453797211182 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4006137453797211183} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4006137453797211183 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4006137453797211182} + 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: 3463850532198968772} + - {fileID: 3463850531298588514} + - {fileID: 3463850531195135156} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4006137452211800623 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4006137453797211183} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: e6d2579522ab14bd695cc970307168f5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3463850532198968772 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4006137452211800623} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4006137453137416329 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4006137453797211183} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3463850531298588514 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4006137453137416329} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4006137453215892319 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4006137453797211183} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 11cb1f92dc94d4e8bb373e7763bc3ad4, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3463850531195135156 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 4006137453215892319} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..b6a558ef --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 6d466b6522d024864a011c022355e388 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/Black/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt.meta new file mode 100644 index 00000000..3ffb0d3f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c43c34b1077ae42e7a49656a90070dae +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches01.prefab new file mode 100644 index 00000000..8a65e0a7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3579613557769810387 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3579613557769810380} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3579613557769810380 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3579613557769810387} + 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: 3902350307913982036} + - {fileID: 3902350306895209293} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3579613557146519487 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3579613557769810380} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a205b4723e2834568ab96b67c4956b1e, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3902350307913982036 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3579613557146519487} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3579613558190458022 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3579613557769810380} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3902350306895209293 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3579613558190458022} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..79b49dd6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1216abb4630d84d07afe7897f27e7f40 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches02.prefab new file mode 100644 index 00000000..432d35b2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1921997643661204520 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1921997643661204521} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1921997643661204521 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1921997643661204520} + 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: 2100638755230804439} + - {fileID: 2100638754531139384} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1921997641761033788 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1921997643661204521} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a205b4723e2834568ab96b67c4956b1e, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2100638755230804439 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 1921997641761033788} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1921997642485872851 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1921997643661204521} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2100638754531139384 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 1921997642485872851} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..f55c5fc7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3065ed8d9d7234caca0da0628473ed12 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches03.prefab new file mode 100644 index 00000000..34a59a38 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3229186849354830807 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3229186849354830800} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3229186849354830800 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3229186849354830807} + 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: 3124048064987808487} + - {fileID: 3124048065643652577} + - {fileID: 3124048064440649521} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3229186849189839370 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3229186849354830800} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3124048065643652577 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3229186849189839370} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3229186849811801356 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3229186849354830800} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a205b4723e2834568ab96b67c4956b1e, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3124048064987808487 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3229186849811801356} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3229186850350833882 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3229186849354830800} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &3124048064440649521 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 3229186850350833882} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..82c5c4a1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d9f8ca3c658ca43028b2dca425283c8d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket02.prefab new file mode 100644 index 00000000..c1397938 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &225839275989420552 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 225839275989420551} + - component: {fileID: 225839275989420549} + - component: {fileID: 225839275989420550} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &225839275989420551 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 225839275989420552} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &225839275989420549 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 225839275989420552} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &225839275989420550 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 225839275989420552} + 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: 7b8c93891cc2b4338bab86d061c75197, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket02.prefab.meta new file mode 100644 index 00000000..a250e01e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 619f74d4e4ea143c5b3304da8487deca +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket03.prefab new file mode 100644 index 00000000..340972d8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9098628202231130212 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9098628202231130213} + - component: {fileID: 9098628202231130215} + - component: {fileID: 9098628202231130214} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9098628202231130213 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9098628202231130212} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &9098628202231130215 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9098628202231130212} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &9098628202231130214 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9098628202231130212} + 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: be8afd34af67f4bdea5860e9f2caa316, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket03.prefab.meta new file mode 100644 index 00000000..139f5476 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: dbe2e7b57256e4c6d8551841f1a08086 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase01.prefab new file mode 100644 index 00000000..439f2e13 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3085042431712526578 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3085042431712526579} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3085042431712526579 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3085042431712526578} + 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: 3268202391141878978} + - {fileID: 3268202390757868725} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3085042432138898217 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3085042431712526579} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a205b4723e2834568ab96b67c4956b1e, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3268202391141878978 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3085042432138898217} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3085042432556524382 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3085042431712526579} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3268202390757868725 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3085042432556524382} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..b5a80985 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9c95facc6992545f181b3bb5184e54b1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase02.prefab new file mode 100644 index 00000000..aa5ccf0d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7180330517024763961 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7180330517024763966} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7180330517024763966 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7180330517024763961} + 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: 7219008461802729372} + - {fileID: 7219008461985775464} + - {fileID: 7219008461904444515} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7180330516293228675 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7180330517024763966} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7219008461985775464 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7180330516293228675} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7180330516349393800 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7180330517024763966} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7219008461904444515 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7180330516349393800} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7180330516451100791 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7180330517024763966} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a205b4723e2834568ab96b67c4956b1e, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &7219008461802729372 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 7180330516451100791} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..ea9110be --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b5e14d27f1ee44c4ca7d9f7ddf597a28 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03.prefab new file mode 100644 index 00000000..a6cf4633 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8932091428132076378 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8932091428132076379} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8932091428132076379 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8932091428132076378} + 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: 8971048039489314433} + - {fileID: 8971048039796631872} + - {fileID: 8971048040194251807} + - {fileID: 8971048039892423694} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8932091426670607348 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8932091428132076379} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8971048040194251807 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8932091426670607348} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8932091426980623333 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8932091428132076379} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8971048039892423694 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8932091426980623333} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8932091427101839019 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8932091428132076379} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8971048039796631872 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8932091427101839019} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8932091427375348074 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8932091428132076379} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9ae825eb7226640fba1776e73c097770, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &8971048039489314433 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 8932091427375348074} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..8ec0a2ea --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 04c62d84cc4a146cf9eedaabf825fbf3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..31d59f0d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &233463452550045407 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 233463452550045406} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &233463452550045406 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 233463452550045407} + 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: 339974187767847263} + - {fileID: 339974185951449198} + - {fileID: 339974187609036359} + - {fileID: 339974187192446044} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &233463450851425972 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 233463452550045406} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9ae825eb7226640fba1776e73c097770, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &339974187767847263 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 233463450851425972} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &233463451043787180 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 233463452550045406} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &339974187609036359 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 233463451043787180} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &233463451435207607 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 233463452550045406} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &339974187192446044 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 233463451435207607} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &233463452676208517 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 233463452550045406} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &339974185951449198 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 233463452676208517} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..939ef5f2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 91335d38a55ee46069796295e811c0b4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..d0e61311 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2375624748402413578 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2375624748402413579} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2375624748402413579 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2375624748402413578} + 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: 2845522221380464049} + - {fileID: 2845522220878252974} + - {fileID: 2845522220540972061} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2375624748053924442 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2375624748402413579} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a205b4723e2834568ab96b67c4956b1e, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &2845522221380464049 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 2375624748053924442} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2375624748556135493 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2375624748402413579} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2845522220878252974 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2375624748556135493} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2375624748893613046 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2375624748402413579} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2845522220540972061 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2375624748893613046} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..a74f2237 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4502a62ce576d43d4ac5168a09a00660 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..ee97e674 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1702764286120812984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1702764286120812985} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1702764286120812985 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1702764286120812984} + 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: 1165260661249182471} + - {fileID: 1165260661024338309} + - {fileID: 1165260660231554954} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1702764286058949868 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1702764286120812985} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a205b4723e2834568ab96b67c4956b1e, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1165260661249182471 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1702764286058949868} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1702764286308963950 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1702764286120812985} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1165260661024338309 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1702764286308963950} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1702764287110127713 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1702764286120812985} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 8c4e87e6dae314f9f9e9c75df25ba814, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &1165260660231554954 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 1702764287110127713} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..b843b805 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f7d710f8b458741e8a119e06485b1e5e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/BlackDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White.meta new file mode 100644 index 00000000..f738d891 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4834549a974646779e622142df746da +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches01.prefab new file mode 100644 index 00000000..8ea94eb9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2400247864496764059 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2400247864496764036} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2400247864496764036 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2400247864496764059} + 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: 2793883003592854189} + - {fileID: 2793883005327482260} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2400247863859149439 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2400247864496764036} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2793883005327482260 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2400247863859149439} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2400247865627258182 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2400247864496764036} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 630d2b45b234849fd9d2e7c6ca382071, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &2793883003592854189 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 2400247865627258182} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches01.prefab.meta new file mode 100644 index 00000000..56bc90c8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0fba58dddba7b4c1488808e51220fb21 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches02.prefab new file mode 100644 index 00000000..d65b28be --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9035404246257284600 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9035404246257284583} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9035404246257284583 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9035404246257284600} + 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: 8858172786371482759} + - {fileID: 8858172784683932448} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &9035404245046211436 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9035404246257284583} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 630d2b45b234849fd9d2e7c6ca382071, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8858172786371482759 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 9035404245046211436} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9035404246734027979 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9035404246257284583} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &8858172784683932448 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 9035404246734027979} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches02.prefab.meta new file mode 100644 index 00000000..ffd0c8e7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fd6f7b084f2d24023ae9fd83cea69344 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches03.prefab new file mode 100644 index 00000000..8001d263 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3975026586391472546 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3975026586391472547} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3975026586391472547 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3975026586391472546} + 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: 3503968614920589856} + - {fileID: 3503968613279391573} + - {fileID: 3503968614710853696} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3975026585924859339 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3975026586391472547} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 630d2b45b234849fd9d2e7c6ca382071, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3503968614920589856 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3975026585924859339} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3975026586168076203 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3975026586391472547} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &3503968614710853696 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 3975026586168076203} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3975026587557935294 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3975026586391472547} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3503968613279391573 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3975026587557935294} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches03.prefab.meta new file mode 100644 index 00000000..039422af --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 47f6415f522c5429792218b90d73b53e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket02.prefab new file mode 100644 index 00000000..3efa982f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3475867490281194909 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3475867490281194906} + - component: {fileID: 3475867490281194904} + - component: {fileID: 3475867490281194907} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3475867490281194906 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3475867490281194909} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3475867490281194904 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3475867490281194909} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &3475867490281194907 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3475867490281194909} + 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: 191ae825771b9468daa8dfc20f554676, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket02.prefab.meta new file mode 100644 index 00000000..cdfd6486 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e713b6b7695444557a9e0d3367044ca3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket03.prefab new file mode 100644 index 00000000..7627d362 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &927716468117541718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 927716468117541719} + - component: {fileID: 927716468117541713} + - component: {fileID: 927716468117541712} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &927716468117541719 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 927716468117541718} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &927716468117541713 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 927716468117541718} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &927716468117541712 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 927716468117541718} + 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: c617accfc4e2446288b0b4e7d694b075, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket03.prefab.meta new file mode 100644 index 00000000..949640f3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8f5a191aa18ee40aca061aaee3c92ba8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase01.prefab new file mode 100644 index 00000000..2414d181 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4104825857001628641 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4104825857001628642} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4104825857001628642 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4104825857001628641} + 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: 4575090025393522445} + - {fileID: 4575090025409490936} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4104825855892146195 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4104825857001628642} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4575090025409490936 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4104825855892146195} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4104825855899787494 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4104825857001628642} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 630d2b45b234849fd9d2e7c6ca382071, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &4575090025393522445 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 4104825855899787494} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase01.prefab.meta new file mode 100644 index 00000000..b8ee2c48 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 3d9b13da47040418cad214176ef771ca +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase02.prefab new file mode 100644 index 00000000..4bdca69d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &15099402024098849 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 15099402024098850} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &15099402024098850 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 15099402024098849} + 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: 558197512947768153} + - {fileID: 558197512621347372} + - {fileID: 558197513042023629} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &15099401015735078 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 15099402024098850} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &558197513042023629 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 15099401015735078} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &15099401110256818 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 15099402024098850} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 630d2b45b234849fd9d2e7c6ca382071, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &558197512947768153 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 15099401110256818} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &15099401402856903 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 15099402024098850} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &558197512621347372 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 15099401402856903} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase02.prefab.meta new file mode 100644 index 00000000..40f49a90 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 16d0a99cd66784cdfbb0f0c134ccda5a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03.prefab new file mode 100644 index 00000000..3ba6fda1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6262354313410401060 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6262354313410401059} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6262354313410401059 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6262354313410401060} + 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: 5864499720379480147} + - {fileID: 5864499721933320916} + - {fileID: 5864499721075212957} + - {fileID: 5864499720216705212} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6262354313227212095 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6262354313410401059} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5864499721933320916 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6262354313227212095} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6262354314051560822 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6262354313410401059} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5864499721075212957 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6262354314051560822} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6262354314747305912 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6262354313410401059} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 480404fa0c13b46e8b920993fc114fc9, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &5864499720379480147 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 6262354314747305912} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6262354314918469463 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6262354313410401059} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5864499720216705212 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6262354314918469463} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03.prefab.meta new file mode 100644 index 00000000..d2e34e0e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0ccb700461dc849298367c685a77f91b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03Rotate.prefab new file mode 100644 index 00000000..55238295 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2656363580765394075 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2656363580765394074} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2656363580765394074 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2656363580765394075} + 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: 2546774488495271254} + - {fileID: 2546774487396969574} + - {fileID: 2546774487663851907} + - {fileID: 2546774487740890375} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2656363579987774141 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2656363580765394074} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 480404fa0c13b46e8b920993fc114fc9, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &2546774488495271254 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 2656363579987774141} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2656363580708870892 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2656363580765394074} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2546774487740890375 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2656363580708870892} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2656363580777455208 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2656363580765394074} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2546774487663851907 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2656363580777455208} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2656363581052783501 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2656363580765394074} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &2546774487396969574 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2656363581052783501} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..872da877 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 93b084a46385a46a3b9383bc35db05ce +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCaseRotate.prefab new file mode 100644 index 00000000..3856fb55 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5707939337200188440 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5707939337200188441} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5707939337200188441 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5707939337200188440} + 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: 5241088156459387363} + - {fileID: 5241088156050457005} + - {fileID: 5241088155637671464} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5707939336188177928 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5707939337200188441} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 630d2b45b234849fd9d2e7c6ca382071, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5241088156459387363 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 5707939336188177928} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5707939336630593094 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5707939337200188441} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5241088156050457005 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5707939336630593094} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5707939337043640771 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5707939337200188441} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &5241088155637671464 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5707939337043640771} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..6dd39d86 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d0ab76eb32b864bf28811ba8980624f0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketLightSwitches.prefab new file mode 100644 index 00000000..d02a1cb8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7763973620608530543 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7763973620608530540} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7763973620608530540 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7763973620608530543} + 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: 7797302853916157659} + - {fileID: 7797302854805212251} + - {fileID: 7797302854692303112} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7763973619108064176 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7763973620608530540} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7797302854805212251 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7763973619108064176} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7763973619212850915 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7763973620608530540} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: ccd5a9add73c348d5bb24dbe6e791487, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &7797302854692303112 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 7763973619212850915} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7763973620030931248 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7763973620608530540} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 630d2b45b234849fd9d2e7c6ca382071, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &7797302853916157659 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 7763973620030931248} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..ba3bd209 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a580b04ea358b4d3fbe8d21fd10d6750 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/White/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt.meta new file mode 100644 index 00000000..42739705 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 84cf9664da3984441825b509f8a26113 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches01.prefab new file mode 100644 index 00000000..fbcbaf25 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &140814368425025562 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 140814368425025563} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &140814368425025563 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 140814368425025562} + 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: 468089111704580754} + - {fileID: 468089112806145039} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &140814368583769060 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 140814368425025563} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &468089112806145039 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 140814368583769060} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &140814369693652345 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 140814368425025563} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c47baae40a26c4979948683f6cbc04b5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &468089111704580754 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 140814369693652345} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..5779eac7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 32784447fab99447590af3d14a2621e3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches02.prefab new file mode 100644 index 00000000..15711aca --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &292056461184615421 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 292056461184615422} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &292056461184615422 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 292056461184615421} + 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: 254223241144057050} + - {fileID: 254223240099840706} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &292056460269411121 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 292056461184615422} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c47baae40a26c4979948683f6cbc04b5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &254223241144057050 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 292056460269411121} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &292056461355361577 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 292056461184615422} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &254223240099840706 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 292056461355361577} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..6106a7ec --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches03.prefab new file mode 100644 index 00000000..42cc05ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5713827381060766693 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5713827381060766694} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5713827381060766694 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5713827381060766693} + 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: 5242522875820692488} + - {fileID: 5242522876554926893} + - {fileID: 5242522877543706311} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5713827379724716332 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5713827381060766694} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &5242522877543706311 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 5713827379724716332} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5713827380747254982 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5713827381060766694} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &5242522876554926893 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 5713827380747254982} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5713827381439607779 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5713827381060766694} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c47baae40a26c4979948683f6cbc04b5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &5242522875820692488 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 5713827381439607779} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..88e60615 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9648cdaf26a16447ebea51273ed98ce2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket02.prefab new file mode 100644 index 00000000..2fdc08b6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &907685011479604930 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 907685011479604929} + - component: {fileID: 907685011479604943} + - component: {fileID: 907685011479604928} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &907685011479604929 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 907685011479604930} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &907685011479604943 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 907685011479604930} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &907685011479604928 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 907685011479604930} + 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: a288ce99ca872458f8d244350ba39d94, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket02.prefab.meta new file mode 100644 index 00000000..8695ab1e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7bd63af620f884f0b965b9b44d25b13e +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket03.prefab new file mode 100644 index 00000000..937db4fd --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4645049893997985649 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4645049893997985654} + - component: {fileID: 4645049893997985652} + - component: {fileID: 4645049893997985655} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4645049893997985654 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4645049893997985649} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &4645049893997985652 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4645049893997985649} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &4645049893997985655 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4645049893997985649} + 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: 9726b6d70b9c247b9a34274dea6f7db6, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket03.prefab.meta new file mode 100644 index 00000000..2df61538 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 68a349b47a6a046dca292bfcb4c55e04 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase01.prefab new file mode 100644 index 00000000..6e4256cf --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7084408496934924247 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7084408496934924240} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7084408496934924240 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7084408496934924247} + 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: 7339291256616414582} + - {fileID: 7339291256365524345} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7084408497000745629 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7084408496934924240} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c47baae40a26c4979948683f6cbc04b5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &7339291256616414582 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 7084408497000745629} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7084408497218077330 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7084408496934924240} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7339291256365524345 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7084408497218077330} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..718046ca --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: ab4dfe4239a1c41d788e5f790183ab2c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase02.prefab new file mode 100644 index 00000000..f637df9b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8957799065028403173 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8957799065028403172} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8957799065028403172 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8957799065028403173} + 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: 8924665200669529027} + - {fileID: 8924665201520439424} + - {fileID: 8924665200963717613} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8957799065917527915 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8957799065028403172} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8924665201520439424 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8957799065917527915} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8957799066432368134 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8957799065028403172} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8924665200963717613 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8957799066432368134} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8957799066760115240 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8957799065028403172} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c47baae40a26c4979948683f6cbc04b5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &8924665200669529027 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 8957799066760115240} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..3b43cb67 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1573f09e479a34331ab82bd07a41866b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03.prefab new file mode 100644 index 00000000..11f37da8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8368001429655474557 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8368001429655474558} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8368001429655474558 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8368001429655474557} + 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: 8334937555254587910} + - {fileID: 8334937554339810987} + - {fileID: 8334937556079059587} + - {fileID: 8334937554405306415} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8368001427693028712 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8368001429655474558} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8334937556079059587 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8368001427693028712} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8368001428483888621 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8368001429655474558} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dcccedbaf387d4c8fb6c5ac1a2f1fb1d, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &8334937555254587910 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 8368001428483888621} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8368001429374851012 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8368001429655474558} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8334937554405306415 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8368001429374851012} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8368001429440407872 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8368001429655474558} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8334937554339810987 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8368001429440407872} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..81765172 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fc1a9a02423474f2f8fc5c3e6db4feba +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..074fac0a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1382540825549944669 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1382540825549944668} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1382540825549944668 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1382540825549944669} + 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: 1487732636586950608} + - {fileID: 1487732636834722349} + - {fileID: 1487732635994177181} + - {fileID: 1487732636184429639} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1382540824670410182 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1382540825549944668} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1487732636834722349 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1382540824670410182} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1382540824876177467 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1382540825549944668} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: dcccedbaf387d4c8fb6c5ac1a2f1fb1d, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &1487732636586950608 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 1382540824876177467} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1382540825278948268 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1382540825549944668} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1487732636184429639 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1382540825278948268} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1382540825502505334 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1382540825549944668} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1487732635994177181 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1382540825502505334} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..e967228f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8b086f7e9cab341e2b9a43e30e107606 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..a510d401 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &640294189037554441 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 640294189037554486} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &640294189037554486 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 640294189037554441} + 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: 1110261902815231333} + - {fileID: 1110261901392334821} + - {fileID: 1110261901486238783} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &640294188517038734 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 640294189037554486} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c47baae40a26c4979948683f6cbc04b5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1110261902815231333 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 640294188517038734} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &640294189870992340 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 640294189037554486} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1110261901486238783 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 640294189870992340} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &640294189931603982 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 640294189037554486} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1110261901392334821 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 640294189931603982} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..81fa7b68 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: a7270bbb288764e23b4bb28af2bd20f5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..9d9b29d6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3881543212148525647 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3881543212148525646} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3881543212148525646 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3881543212148525647} + 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: 3626729763210748025} + - {fileID: 3626729763677591679} + - {fileID: 3626729763436326549} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3881543211317706644 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3881543212148525646} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3626729763677591679 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3881543211317706644} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3881543211592190334 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3881543212148525646} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a0bb7c4cb17864eaea784ce7d8781e62, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3626729763436326549 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3881543211592190334} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3881543211776083858 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3881543212148525646} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: c47baae40a26c4979948683f6cbc04b5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3626729763210748025 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3881543211776083858} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..a9603bd2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 25f3380a14e2b4c0eaaa5d588d180b3d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/256x256/WhiteDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512.meta b/Assets/SocketsAndSwitches/Prefabs/512x512.meta new file mode 100644 index 00000000..a029a192 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bf2185453f59b486eaed7af622f426ab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black.meta new file mode 100644 index 00000000..54431d5a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 01b9a9efe8324414aa513c3de9cf61ea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches01.prefab new file mode 100644 index 00000000..8df2edd2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8215230692185645792 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8215230692185645799} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8215230692185645799 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8215230692185645792} + 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: 8469271664769512306} + - {fileID: 8469271664806732305} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8215230690810873338 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8215230692185645799} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &8469271664806732305 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 8215230690810873338} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8215230690822935705 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8215230692185645799} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: abafd54c12f434dc1972ca48c6cd2d69, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8469271664769512306 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8215230690822935705} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches01.prefab.meta new file mode 100644 index 00000000..7fdc18b4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c3e0b7de7d7644e46a6adfc4a505ab6c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches02.prefab new file mode 100644 index 00000000..782dbabb --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9197150917554194717 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9197150917554194690} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9197150917554194690 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9197150917554194717} + 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: 8658277462393504993} + - {fileID: 8658277462835131532} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &9197150917474095975 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9197150917554194690} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &8658277462835131532 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 9197150917474095975} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9197150917881832202 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9197150917554194690} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: abafd54c12f434dc1972ca48c6cd2d69, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8658277462393504993 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 9197150917881832202} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches02.prefab.meta new file mode 100644 index 00000000..1b0cffe5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 10167dad683b6485d936cbac0d9b7ae8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches03.prefab new file mode 100644 index 00000000..c7f61f4c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3252226392747009708 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3252226392747009709} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3252226392747009709 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3252226392747009708} + 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: 3073851681463460533} + - {fileID: 3073851680394215534} + - {fileID: 3073851679964517881} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3252226391380362590 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3252226392747009709} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0c5662e80457e49f889be9b39d1d9875, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3073851681463460533 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3252226391380362590} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3252226392407926661 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3252226392747009709} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3073851680394215534 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3252226392407926661} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3252226392837370386 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3252226392747009709} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &3073851679964517881 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 3252226392837370386} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches03.prefab.meta new file mode 100644 index 00000000..32ff179e --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f3201a17e357f49eba0a0e18d21e67df +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket02.prefab new file mode 100644 index 00000000..247a6e26 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5545962638129345844 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5545962638129345845} + - component: {fileID: 5545962638129345843} + - component: {fileID: 5545962638129345842} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5545962638129345845 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5545962638129345844} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &5545962638129345843 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5545962638129345844} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &5545962638129345842 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5545962638129345844} + 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: c3674f44874ff4e4e94ee30cfd6c2e66, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket02.prefab.meta new file mode 100644 index 00000000..d0e873e9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 871712dc5a34d42eea6e70e4dace710c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket03.prefab new file mode 100644 index 00000000..aee14831 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6434598122492681033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6434598122492681046} + - component: {fileID: 6434598122492681044} + - component: {fileID: 6434598122492681047} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6434598122492681046 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6434598122492681033} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6434598122492681044 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6434598122492681033} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &6434598122492681047 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6434598122492681033} + 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: 6a5b1b05758a44169a45a78efde6574c, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket03.prefab.meta new file mode 100644 index 00000000..b3ced812 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 35f865ffdb9ea473dafe673fc144f8f1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase01.prefab new file mode 100644 index 00000000..d704b43f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3931021389600411751 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3931021389600411750} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3931021389600411750 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3931021389600411751} + 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: 3532918178177982178} + - {fileID: 3532918178477533997} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3931021388165483718 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3931021389600411750} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3532918178477533997 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3931021388165483718} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3931021388473497865 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3931021389600411750} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: abafd54c12f434dc1972ca48c6cd2d69, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3532918178177982178 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3931021388473497865} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase01.prefab.meta new file mode 100644 index 00000000..2a6c54ae --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase02.prefab new file mode 100644 index 00000000..03fdaac8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4466998718830882825 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4466998718830882826} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4466998718830882826 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4466998718830882825} + 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: 4212922664143127675} + - {fileID: 4212922665136657197} + - {fileID: 4212922665831062147} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4466998717315038568 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4466998718830882826} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4212922665831062147 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4466998717315038568} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4466998718009504966 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4466998718830882826} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4212922665136657197 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4466998718009504966} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4466998718977860496 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4466998718830882826} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: abafd54c12f434dc1972ca48c6cd2d69, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4212922664143127675 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4466998718977860496} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase02.prefab.meta new file mode 100644 index 00000000..cc40930f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 741902c8485fd45579b133ff8eee5a62 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03.prefab new file mode 100644 index 00000000..836cc96f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4927980506841691642 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4927980506841691643} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4927980506841691643 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4927980506841691642} + 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: 4893457126078370348} + - {fileID: 4893457126031320343} + - {fileID: 4893457124919938547} + - {fileID: 4893457126617122735} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4927980505546317892 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4927980506841691643} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4893457126617122735 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4927980505546317892} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4927980506084816327 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4927980506841691643} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: b11a72df83eaf4a2182fba453bc1f8ac, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &4893457126078370348 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 4927980506084816327} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4927980506098565884 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4927980506841691643} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4893457126031320343 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4927980506098565884} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4927980507218078232 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4927980506841691643} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4893457124919938547 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4927980507218078232} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03.prefab.meta new file mode 100644 index 00000000..c6f268e5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03Rotate.prefab new file mode 100644 index 00000000..c8121534 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3642970781636896179 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3642970781636896178} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3642970781636896178 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3642970781636896179} + 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: 3820415753824518026} + - {fileID: 3820415752600846585} + - {fileID: 3820415753197261019} + - {fileID: 3820415752605288960} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3642970779978127457 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3642970781636896178} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 75ef68a36921847abb4b36ab1d1a6fa0, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &3820415753824518026 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 3642970779978127457} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3642970780605380400 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3642970781636896178} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3820415753197261019 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3642970780605380400} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3642970781168297746 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3642970781636896178} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3820415752600846585 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3642970781168297746} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3642970781172182507 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3642970781636896178} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3820415752605288960 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3642970781172182507} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..5c8413b8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4b51ec02f89ec43a49df657eff42f3d5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCaseRotate.prefab new file mode 100644 index 00000000..e805b110 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1185982860874550233 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1185982860874550234} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1185982860874550234 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185982860874550233} + 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: 1729325485443594095} + - {fileID: 1729325485770486959} + - {fileID: 1729325485747992978} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1185982859578200900 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1185982860874550234} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1729325485770486959 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1185982859578200900} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1185982859625930361 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1185982860874550234} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1729325485747992978 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1185982859625930361} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1185982859905093764 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1185982860874550234} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 0c5662e80457e49f889be9b39d1d9875, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1729325485443594095 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1185982859905093764} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..2fb5f7ee --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f932c2d7154824784afda4ed85338025 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketLightSwitches.prefab new file mode 100644 index 00000000..73d51b39 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8220994845977931984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8220994845977931985} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8220994845977931985 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8220994845977931984} + 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: 8474769804124832591} + - {fileID: 8474769803525455031} + - {fileID: 8474769803348979139} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8220994844767298724 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8220994845977931985} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: abafd54c12f434dc1972ca48c6cd2d69, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &8474769804124832591 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 8220994844767298724} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8220994845375339356 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8220994845977931985} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8474769803525455031 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8220994845375339356} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8220994845585426984 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8220994845977931985} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 80f96c09964f64dc5851e8cd0281a103, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &8474769803348979139 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 8220994845585426984} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..167c72ce --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 43220db99dd034a37a1edd16065de56f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/Black/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt.meta new file mode 100644 index 00000000..167295a0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 26817826763f34563855bae576d4703a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches01.prefab new file mode 100644 index 00000000..897effe3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7857832935603774970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7857832935603774971} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7857832935603774971 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7857832935603774970} + 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: 7675849076738124447} + - {fileID: 7675849076328767929} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7857832936672922996 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7857832935603774971} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 965ba76d7f8fa4e9491047d349da3f08, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &7675849076738124447 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 7857832936672922996} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7857832937074148946 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7857832935603774971} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &7675849076328767929 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 7857832937074148946} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..d19cbc02 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 7d374c565c9a04a30913ec6654008d5d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches02.prefab new file mode 100644 index 00000000..4ea69583 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5335596081788337977 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5335596081788337976} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5335596081788337976 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5335596081788337977} + 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: 5584851806034306021} + - {fileID: 5584851806846712710} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5335596080060341357 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5335596081788337976} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &5584851806846712710 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 5335596080060341357} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5335596080906290190 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5335596081788337976} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 965ba76d7f8fa4e9491047d349da3f08, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &5584851806034306021 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 5335596080906290190} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..d8dbbfba --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches03.prefab new file mode 100644 index 00000000..af411380 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &179393529181226468 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 179393529181226469} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &179393529181226469 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 179393529181226468} + 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: 430071823743290647} + - {fileID: 430071823818217837} + - {fileID: 430071825253084641} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &179393528053385738 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 179393529181226469} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &430071825253084641 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 179393528053385738} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &179393529488588422 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 179393529181226469} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &430071823818217837 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 179393529488588422} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &179393529563507452 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 179393529181226469} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa7d7972fbfcc4166b451d067074a060, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &430071823743290647 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 179393529563507452} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..740a6cb0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: faa4f8d61024a40c6a48085f54e9b81b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket02.prefab new file mode 100644 index 00000000..a5505230 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3406779199416631474 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3406779199416631473} + - component: {fileID: 3406779199416631479} + - component: {fileID: 3406779199416631472} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3406779199416631473 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3406779199416631474} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &3406779199416631479 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3406779199416631474} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &3406779199416631472 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3406779199416631474} + 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: 2cf795f7e6c234e359a861e903345597, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket02.prefab.meta new file mode 100644 index 00000000..389195e1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d5a105f2dc42145fb81169d0a82ebc22 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket03.prefab new file mode 100644 index 00000000..aa792f00 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6217799843498443483 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6217799843498443482} + - component: {fileID: 6217799843498443480} + - component: {fileID: 6217799843498443481} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6217799843498443482 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6217799843498443483} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &6217799843498443480 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6217799843498443483} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &6217799843498443481 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6217799843498443483} + 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: 1bf00bf2adb314283aa54b99391c3699, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket03.prefab.meta new file mode 100644 index 00000000..f8e0be06 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 4b8bd45421d324cdaa9f41c1624d0e2c +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase01.prefab new file mode 100644 index 00000000..6b92f920 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9023376836385957844 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9023376836385957845} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9023376836385957845 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9023376836385957844} + 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: 8841621676232858504} + - {fileID: 8841621675451853925} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &9023376836079238243 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9023376836385957845} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 965ba76d7f8fa4e9491047d349da3f08, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8841621676232858504 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 9023376836079238243} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9023376836885662606 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9023376836385957845} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8841621675451853925 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9023376836885662606} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..e7acbed7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c9e24b7584c4d4fd89d3aa2925e3c119 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase02.prefab new file mode 100644 index 00000000..8776dc3c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4419765264190342239 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4419765264190342236} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4419765264190342236 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4419765264190342239} + 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: 4241423735156548099} + - {fileID: 4241423735277949086} + - {fileID: 4241423735055760617} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4419765263971022709 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4419765264190342236} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4241423735277949086 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4419765263971022709} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4419765264100869608 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4419765264190342236} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 965ba76d7f8fa4e9491047d349da3f08, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &4241423735156548099 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 4419765264100869608} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4419765264201407234 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4419765264190342236} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4241423735055760617 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4419765264201407234} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..33e576de --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 05829de290b6d411d9c1b1a162633fb2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03.prefab new file mode 100644 index 00000000..f06d24bc --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8029828358692404565 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8029828358692404564} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8029828358692404564 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8029828358692404565} + 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: 7558472993232210244} + - {fileID: 7558472994970839314} + - {fileID: 7558472995132423501} + - {fileID: 7558472993765324746} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8029828357933587110 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8029828358692404564} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7558472995132423501 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8029828357933587110} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8029828358087102201 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8029828358692404564} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7558472994970839314 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8029828358087102201} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8029828359301009441 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8029828358692404564} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7558472993765324746 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8029828359301009441} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8029828359833792175 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8029828358692404564} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa109d9a3939a40a5ab4dac714273671, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &7558472993232210244 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 8029828359833792175} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..42a44e34 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 830a1f276caa94ac391a838c76e683d1 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..6ad0a346 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &555636672814329869 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 555636672814329868} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &555636672814329868 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 555636672814329869} + 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: 17097272940529333} + - {fileID: 17097274363769406} + - {fileID: 17097273239177378} + - {fileID: 17097273671823733} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &555636672552310229 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 555636672814329868} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &17097274363769406 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 555636672552310229} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &555636673252906654 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 555636672814329868} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &17097273671823733 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 555636673252906654} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &555636673643409225 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 555636672814329868} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &17097273239177378 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 555636673643409225} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &555636673942315358 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 555636672814329868} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 01128155a7dad4c63b7a6cb90ebaa1cd, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &17097272940529333 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 555636673942315358} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..5e0fa946 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b5e6956da1e6247c9b973952e73cd0ff +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..881ae611 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7171129368900522439 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7171129368900522440} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7171129368900522440 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7171129368900522439} + 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: 7209771897750358516} + - {fileID: 7209771899601562393} + - {fileID: 7209771897770957567} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7171129368199384306 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7171129368900522440} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7209771899601562393 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7171129368199384306} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7171129369988316436 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7171129368900522440} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7209771897770957567 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7171129369988316436} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7171129370042199583 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7171129368900522440} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: fa7d7972fbfcc4166b451d067074a060, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &7209771897750358516 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 7171129370042199583} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..d3ca63be --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9109c016aac8d43e5ad707b7387f7a14 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..5f23332b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2269799229546262016 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2269799229546262017} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2269799229546262017 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2269799229546262016} + 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: 1798426238048442513} + - {fileID: 1798426238290162281} + - {fileID: 1798426237757680432} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2269799230790669698 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2269799229546262017} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1798426238290162281 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2269799230790669698} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2269799231065948026 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2269799229546262017} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 965ba76d7f8fa4e9491047d349da3f08, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1798426238048442513 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 2269799231065948026} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2269799231331273947 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2269799229546262017} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 3812772ff29e74cc6b87c747436f003e, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &1798426237757680432 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2269799231331273947} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..c845e473 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f2a0f75c5ec2449caad11cf952c649a8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/BlackDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White.meta new file mode 100644 index 00000000..71c76723 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0505c5e245bce4e1fa15c5b77a5db7ed +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches01.prefab new file mode 100644 index 00000000..e80cd6cf --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &528591228132272552 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 528591228132272559} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &528591228132272559 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 528591228132272552} + 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: 62865224531256434} + - {fileID: 62865225348723123} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &528591227040290392 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 528591228132272559} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &62865225348723123 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 528591227040290392} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &528591227832255385 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 528591228132272559} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 75d409f1f73714c3bb5d0e7510981ef5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &62865224531256434 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 528591227832255385} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches01.prefab.meta new file mode 100644 index 00000000..4ddc033a --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d62febfe192484a609cd93e6302e7a5a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches02.prefab new file mode 100644 index 00000000..f09bb591 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6748271777287450919 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6748271777287450904} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6748271777287450904 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6748271777287450919} + 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: 6497590421881349226} + - {fileID: 6497590422849880909} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6748271775983854758 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6748271777287450904} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &6497590422849880909 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 6748271775983854758} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6748271776910443393 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6748271777287450904} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 75d409f1f73714c3bb5d0e7510981ef5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &6497590421881349226 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 6748271776910443393} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches02.prefab.meta new file mode 100644 index 00000000..ec06ee3d --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 9a9eafa92ee0f46f285a5f89bd668d05 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches03.prefab new file mode 100644 index 00000000..992958ce --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2310206757061947319 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2310206757061947318} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2310206757061947318 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2310206757061947319} + 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: 2847745781524171681} + - {fileID: 2847745782304380238} + - {fileID: 2847745782060982089} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2310206756290294437 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2310206757061947318} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2847745782304380238 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 2310206756290294437} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2310206756533434530 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2310206757061947318} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2847745782060982089 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 2310206756533434530} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2310206757070236746 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2310206757061947318} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f275ca41a84bf438a8136e1cbf98f14e, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &2847745781524171681 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 2310206757070236746} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches03.prefab.meta new file mode 100644 index 00000000..43958a73 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 1bcaebdb51ff0483f8adad41df8946a5 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket02.prefab new file mode 100644 index 00000000..83956480 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8672476019876131285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8672476019876131284} + - component: {fileID: 8672476019876131286} + - component: {fileID: 8672476019876131287} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8672476019876131284 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8672476019876131285} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8672476019876131286 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8672476019876131285} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &8672476019876131287 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8672476019876131285} + 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: 233db594df4bc4703b9c665607436789, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket02.prefab.meta new file mode 100644 index 00000000..0c509940 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: b4cfb28c2a56d40eeb05bf75440332a3 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket03.prefab new file mode 100644 index 00000000..39b027a8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1902927001931648095 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1902927001931648094} + - component: {fileID: 1902927001931648092} + - component: {fileID: 1902927001931648093} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1902927001931648094 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902927001931648095} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &1902927001931648092 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902927001931648095} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &1902927001931648093 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1902927001931648095} + 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: b0f81d6f71dbd44ccbfed18b426c473b, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket03.prefab.meta new file mode 100644 index 00000000..2facaa95 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 39b2b030790084f5696cada8fafbe964 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase01.prefab new file mode 100644 index 00000000..85ad91b4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8727327061103809065 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8727327061103809070} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8727327061103809070 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8727327061103809065} + 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: 9121769209527673056} + - {fileID: 9121769209254488189} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8727327061817116427 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8727327061103809070} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 75d409f1f73714c3bb5d0e7510981ef5, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &9121769209527673056 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8727327061817116427} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8727327062081720214 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8727327061103809070} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &9121769209254488189 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8727327062081720214} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase01.prefab.meta new file mode 100644 index 00000000..2cc3476c --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: f68af86cffa3b433498922c37059f3c8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase02.prefab new file mode 100644 index 00000000..5adde7d1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1383374732287314063 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1383374732287314096} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1383374732287314096 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1383374732287314063} + 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: 1492946026556272980} + - {fileID: 1492946026705332016} + - {fileID: 1492946026863964097} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1383374731372382250 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1383374732287314096} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1492946026863964097 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1383374731372382250} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1383374731530944731 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1383374732287314096} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1492946026705332016 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 1383374731530944731} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1383374731713631935 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1383374732287314096} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 75d409f1f73714c3bb5d0e7510981ef5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1492946026556272980 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1383374731713631935} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase02.prefab.meta new file mode 100644 index 00000000..6fd3ad7b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 36ccfa4595bc1423084811d323a3c2cc +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03.prefab new file mode 100644 index 00000000..e29b9930 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &7708584023377585035 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7708584023377585032} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &7708584023377585032 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7708584023377585035} + 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: 7886046141056047653} + - {fileID: 7886046139473585723} + - {fileID: 7886046139623875168} + - {fileID: 7886046140175971326} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &7708584022414278094 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7708584023377585032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 7d5cab5d56de944fa8cf52f68257bc6f, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &7886046141056047653 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 7708584022414278094} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7708584023286223893 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7708584023377585032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7886046140175971326 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7708584023286223893} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7708584023804757387 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7708584023377585032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7886046139623875168 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7708584023804757387} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7708584023988404688 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 7708584023377585032} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &7886046139473585723 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 7708584023988404688} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03.prefab.meta new file mode 100644 index 00000000..f9bd11a0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: d0ad5578a98d94b5fbbb1b738d069fc8 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03Rotate.prefab new file mode 100644 index 00000000..05cd402b --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5007359944963286296 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5007359944963286503} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5007359944963286503 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5007359944963286296} + 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: 4825341106561540774} + - {fileID: 4825341107729497429} + - {fileID: 4825341106905665897} + - {fileID: 4825341107759862886} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5007359942959608717 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5007359944963286503} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4825341107759862886 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5007359942959608717} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5007359942998563518 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5007359944963286503} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4825341107729497429 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5007359942998563518} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5007359943847622274 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5007359944963286503} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4825341106905665897 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5007359943847622274} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5007359944157922637 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5007359944963286503} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: debfa7d6dbec641169a9dbb0d913a47a, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &4825341106561540774 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 5007359944157922637} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..85e74ab4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0ea5a0991cb984858a93c6e72a48fb44 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCaseRotate.prefab new file mode 100644 index 00000000..f75f4972 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3644179382605582653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3644179382605582652} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3644179382605582652 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3644179382605582653} + 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: 3825808613777160763} + - {fileID: 3825808613610644272} + - {fileID: 3825808614849326271} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3644179382437956436 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3644179382605582652} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3825808614849326271 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3644179382437956436} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3644179383518518736 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3644179382605582652} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: f275ca41a84bf438a8136e1cbf98f14e, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &3825808613777160763 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 3644179383518518736} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3644179383685022939 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3644179382605582652} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &3825808613610644272 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 3644179383685022939} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..5b5373fa --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: aebefbd531e624f5393efbdd3cb792f9 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketLightSwitches.prefab new file mode 100644 index 00000000..1821d9f8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &6611739941427761263 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6611739941427761256} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &6611739941427761256 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6611739941427761263} + 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: 6650452220749197569} + - {fileID: 6650452220457135311} + - {fileID: 6650452222049362236} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &6611739940626155223 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6611739941427761256} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &6650452222049362236 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 6611739940626155223} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6611739941960144618 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6611739941427761256} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 75d409f1f73714c3bb5d0e7510981ef5, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &6650452220749197569 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 6611739941960144618} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6611739942210194212 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 6611739941427761256} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 9d1e97e3a48064f06a55f1305125406a, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &6650452220457135311 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 6611739942210194212} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..9d7880b0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 44c09f9ecfee44e9ca79154ec69f154a +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/White/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt.meta new file mode 100644 index 00000000..4db0e0fd --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6ce88a15679194a4f83c971434d97ee1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches01.prefab new file mode 100644 index 00000000..2461aabf --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3305534054518022318 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3305534054518022319} + m_Layer: 0 + m_Name: LightSwitches01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3305534054518022319 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3305534054518022318} + 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: 3050384766204532700} + - {fileID: 3050384768158920224} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3305534054524422603 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3305534054518022319} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &3050384768158920224 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 3305534054524422603} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3305534056512303159 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3305534054518022319} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 99d3cac42fa734c17a01077a36df900d, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3050384766204532700 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3305534056512303159} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches01.prefab.meta new file mode 100644 index 00000000..459bb393 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 2821c86d7372242df8db12cdfe043eb2 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches02.prefab new file mode 100644 index 00000000..6192d6db --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches02.prefab @@ -0,0 +1,171 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &3174152867801849860 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3174152867801849861} + m_Layer: 0 + m_Name: LightSwitches02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &3174152867801849861 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3174152867801849860} + 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: 3136302262139938323} + - {fileID: 3136302261600503211} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &3174152867156558328 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3174152867801849861} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 99d3cac42fa734c17a01077a36df900d, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &3136302262139938323 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 3174152867156558328} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3174152867670827584 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 3174152867801849861} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &3136302261600503211 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 3174152867670827584} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches02.prefab.meta new file mode 100644 index 00000000..c64bfb77 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 0f2cded10c4334854b52f01ff1da4e51 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches03.prefab new file mode 100644 index 00000000..67be5a71 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches03.prefab @@ -0,0 +1,238 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &1744851394519555086 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1744851394519555087} + m_Layer: 0 + m_Name: LightSwitches03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1744851394519555087 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1744851394519555086} + 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: 2286786705136905888} + - {fileID: 2286786703907522369} + - {fileID: 2286786703560801330} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1744851393551272267 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1744851394519555087} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 66b1e7d7fde2740b5b1d8ebd885150e0, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &2286786705136905888 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 1744851393551272267} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1744851394814533802 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1744851394519555087} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &2286786703907522369 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 1744851394814533802} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1744851395127712729 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1744851394519555087} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0.001000002 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -5900165945173752514, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: -5815786386960781047, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} +--- !u!4 &2286786703560801330 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: f4979408603c04d3292b9e903f5a16b2, type: 3} + m_PrefabInstance: {fileID: 1744851395127712729} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches03.prefab.meta new file mode 100644 index 00000000..6f7a2786 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: e97717330cc894c569f8d0ce6ddf51fa +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/LightSwitches03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket02.prefab new file mode 100644 index 00000000..26a526d6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket02.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8449845443574611673 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8449845443574611672} + - component: {fileID: 8449845443574611674} + - component: {fileID: 8449845443574611675} + m_Layer: 0 + m_Name: Socket02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8449845443574611672 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8449845443574611673} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &8449845443574611674 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8449845443574611673} + m_Mesh: {fileID: 5769708239012400465, guid: ce5d75d55123447069903d64d6719fdc, type: 3} +--- !u!23 &8449845443574611675 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8449845443574611673} + 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: 462057eab82ca46b384bd409d66c1d41, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket02.prefab.meta new file mode 100644 index 00000000..b6e9edbf --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 21e98050880784f039f030a1702cf93d +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket03.prefab new file mode 100644 index 00000000..16c4d831 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket03.prefab @@ -0,0 +1,85 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2055071046013452476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2055071046013452475} + - component: {fileID: 2055071046013452473} + - component: {fileID: 2055071046013452474} + m_Layer: 0 + m_Name: Socket03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2055071046013452475 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2055071046013452476} + m_LocalRotation: {x: 0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!33 &2055071046013452473 +MeshFilter: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2055071046013452476} + m_Mesh: {fileID: -7245586041851660757, guid: 55405defff8774bb598c0cda58b59547, type: 3} +--- !u!23 &2055071046013452474 +MeshRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2055071046013452476} + 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: 2b619f6b94d1247e2916f509ebda51ac, 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} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket03.prefab.meta new file mode 100644 index 00000000..ca2d729f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 8bd764b12552b433cbbee36b24bcfb67 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/Socket03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase01.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase01.prefab new file mode 100644 index 00000000..7706ecc9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase01.prefab @@ -0,0 +1,167 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8378082133695764231 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8378082133695764228} + m_Layer: 0 + m_Name: SocketCase01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8378082133695764228 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8378082133695764231} + 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: 8344699735598988366} + - {fileID: 8344699737492391218} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8378082132592616153 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8378082133695764228} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8344699737492391218 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8378082132592616153} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8378082134519258021 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8378082133695764228} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.y + value: 2.3283064e-10 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 99d3cac42fa734c17a01077a36df900d, type: 2} + - target: {fileID: 919132149155446097, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} +--- !u!4 &8344699735598988366 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 60270438d04674b6a8ff59ff2fa2df5f, type: 3} + m_PrefabInstance: {fileID: 8378082134519258021} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase01.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase01.prefab.meta new file mode 100644 index 00000000..136f46b2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase01.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c19f1f464230746ae9a57964c418391f +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase01.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase02.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase02.prefab new file mode 100644 index 00000000..a4925f2f --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase02.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &8504903454298278980 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8504903454298279035} + m_Layer: 0 + m_Name: SocketCase02 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8504903454298279035 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8504903454298278980} + 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: 8182413647303712987} + - {fileID: 8182413648447252748} + - {fileID: 8182413647862289994} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &8504903452642299623 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8504903454298279035} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8182413648447252748 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8504903452642299623} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8504903453193974177 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8504903454298279035} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8182413647862289994 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 8504903453193974177} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8504903453760669488 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 8504903454298279035} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 99d3cac42fa734c17a01077a36df900d, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &8182413647303712987 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 8504903453760669488} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase02.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase02.prefab.meta new file mode 100644 index 00000000..edac75ab --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase02.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 72b516d6d67164d38918c1fd85275b7b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase02.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03.prefab new file mode 100644 index 00000000..dcaab607 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &4153844323939568517 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4153844323939568516} + m_Layer: 0 + m_Name: SocketCase03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &4153844323939568516 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4153844323939568517} + 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: 4481031166080228369} + - {fileID: 4481031166468287290} + - {fileID: 4481031165888854309} + - {fileID: 4481031166320581332} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &4153844324774612177 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4153844323939568516} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4481031166468287290 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4153844324774612177} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4153844324955815231 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4153844323939568516} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4481031166320581332 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4153844324955815231} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4153844325187845114 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4153844323939568516} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 766ad8c8ee3c34ca3bd992e07b3994d1, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &4481031166080228369 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 4153844325187845114} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4153844325353987790 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 4153844323939568516} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4481031165888854309 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 4153844325353987790} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03.prefab.meta new file mode 100644 index 00000000..185465d3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 74766334888c849ae89950dd20eb81e0 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03Rotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03Rotate.prefab new file mode 100644 index 00000000..8fa20e44 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03Rotate.prefab @@ -0,0 +1,301 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &5174397003549508464 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5174397003549508465} + m_Layer: 0 + m_Name: SocketCase03Rotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &5174397003549508465 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5174397003549508464} + 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: 4631283532974566092} + - {fileID: 4631283532532674863} + - {fileID: 4631283532390152922} + - {fileID: 4631283532112351602} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &5174397002345991463 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5174397003549508465} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 78499dc52d9e040a68a187181385d556, type: 2} + - target: {fileID: 919132149155446097, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} +--- !u!4 &4631283532974566092 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 89c7f27fd57e141979c4b2d7bb8d41a1, type: 3} + m_PrefabInstance: {fileID: 5174397002345991463} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5174397002754332356 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5174397003549508465} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4631283532532674863 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5174397002754332356} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5174397002897055025 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5174397003549508465} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4631283532390152922 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5174397002897055025} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5174397003208144537 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 5174397003549508465} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.0647 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &4631283532112351602 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 5174397003208144537} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03Rotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03Rotate.prefab.meta new file mode 100644 index 00000000..f3e84838 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03Rotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 59d49ef1f8db54453bef34f910ccc11b +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCase03Rotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCaseRotate.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCaseRotate.prefab new file mode 100644 index 00000000..882fc9a0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCaseRotate.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &2055042112980047021 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2055042112980047022} + m_Layer: 0 + m_Name: SocketCaseRotate + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2055042112980047022 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2055042112980047021} + 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: 1949566696917951651} + - {fileID: 1949566696463652153} + - {fileID: 1949566697272743151} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2055042111365116676 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2055042112980047022} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0.03250003 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1949566697272743151 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2055042111365116676} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2055042111744803656 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2055042112980047022} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0.7071068 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 90 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 66b1e7d7fde2740b5b1d8ebd885150e0, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &1949566696917951651 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 2055042111744803656} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2055042112165556946 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2055042112980047022} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: 0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &1949566696463652153 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 2055042112165556946} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCaseRotate.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCaseRotate.prefab.meta new file mode 100644 index 00000000..5db375ef --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCaseRotate.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: c8951ec98797348ebbcd63fba84a7906 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketCaseRotate.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketLightSwitches.prefab b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketLightSwitches.prefab new file mode 100644 index 00000000..98c78616 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketLightSwitches.prefab @@ -0,0 +1,234 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!1 &9089088529316069177 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9089088529316069182} + m_Layer: 0 + m_Name: SocketLightSwitches + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9089088529316069182 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9089088529316069177} + 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: 8766349728107337362} + - {fileID: 8766349727501347160} + - {fileID: 8766349727471846725} + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &9089088530593051001 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9089088529316069182} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: 99d3cac42fa734c17a01077a36df900d, type: 2} + - target: {fileID: 919132149155446097, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} +--- !u!4 &8766349728107337362 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: bc0b5b0f845744f929e523be99af81f9, type: 3} + m_PrefabInstance: {fileID: 9089088530593051001} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9089088531199037107 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9089088529316069182} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.y + value: -0.0325 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + propertyPath: m_Name + value: Socket01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} +--- !u!4 &8766349727501347160 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 2017e0e46dfd54af895861cb15e8e215, type: 3} + m_PrefabInstance: {fileID: 9089088531199037107} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9089088531236659886 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 9089088529316069182} + m_Modifications: + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.y + value: 0.0316 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.x + value: -7.16474e-36 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.y + value: -6.1431064e-19 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalRotation.z + value: 1.1663056e-17 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: -7511558181221131132, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Materials.Array.data[0] + value: + objectReference: {fileID: 2100000, guid: a21637e0daec2428e951dd9d07377a57, type: 2} + - target: {fileID: 919132149155446097, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} +--- !u!4 &8766349727471846725 stripped +Transform: + m_CorrespondingSourceObject: {fileID: -8679921383154817045, guid: 93e76fb15ea8c4a8ab92ae6a7c83a4f0, type: 3} + m_PrefabInstance: {fileID: 9089088531236659886} + m_PrefabAsset: {fileID: 0} diff --git a/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketLightSwitches.prefab.meta b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketLightSwitches.prefab.meta new file mode 100644 index 00000000..57e34fe8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketLightSwitches.prefab.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: fb07ff8859fae4e46b66247f75e5b351 +PrefabImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Prefabs/512x512/WhiteDirt/SocketLightSwitches.prefab + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/SRP UpgradePackage.meta b/Assets/SocketsAndSwitches/SRP UpgradePackage.meta new file mode 100644 index 00000000..0dfd8591 --- /dev/null +++ b/Assets/SocketsAndSwitches/SRP UpgradePackage.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 91cc2e24d14a248aa89167fcd265678a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Scene.meta b/Assets/SocketsAndSwitches/Scene.meta new file mode 100644 index 00000000..52013f5c --- /dev/null +++ b/Assets/SocketsAndSwitches/Scene.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 54db9a58afc9246e69f51f83d8356cb8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Scene/Demo.unity b/Assets/SocketsAndSwitches/Scene/Demo.unity new file mode 100644 index 00000000..5f4a210d --- /dev/null +++ b/Assets/SocketsAndSwitches/Scene/Demo.unity @@ -0,0 +1,14958 @@ +%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: 9 + 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: 10304, guid: 0000000000000000f000000000000000, type: 0} + 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_IndirectSpecularColor: {r: 0.18378644, g: 0.2291251, b: 0.3042915, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 12 + m_GIWorkflowMode: 1 + 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_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + 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: 0} + m_LightingSettings: {fileID: 0} +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + 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 + accuratePlacement: 0 + maxJobWorkers: 0 + preserveTilesOutsideBounds: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1001 &1085755 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1431846778402507451, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} +--- !u!4 &1085756 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1431846778402507450, guid: 238b76807e3fe4d4cbd326bda5fbbef9, type: 3} + m_PrefabInstance: {fileID: 1085755} + m_PrefabAsset: {fileID: 0} +--- !u!4 &9691995 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + m_PrefabInstance: {fileID: 2375624748411712336} + m_PrefabAsset: {fileID: 0} +--- !u!4 &16732569 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + m_PrefabInstance: {fileID: 2656363580755084547} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &16896161 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700747532447803323, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} +--- !u!4 &16896162 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2700747532447803300, guid: 2302cd5a86ac9444aad387742b22bd0d, type: 3} + m_PrefabInstance: {fileID: 16896161} + m_PrefabAsset: {fileID: 0} +--- !u!4 &24349408 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + m_PrefabInstance: {fileID: 640294189017792982} + m_PrefabAsset: {fileID: 0} +--- !u!4 &29207254 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + m_PrefabInstance: {fileID: 2055042112987692664} + m_PrefabAsset: {fileID: 0} +--- !u!1 &30476143 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 30476144} + m_Layer: 0 + m_Name: BlackDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &30476144 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30476143} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2000872588} + - {fileID: 171630441} + - {fileID: 1085756} + - {fileID: 120593162} + - {fileID: 842655644} + - {fileID: 110204480} + - {fileID: 1141405162} + - {fileID: 1397542404} + - {fileID: 833660300} + - {fileID: 102275192} + - {fileID: 1106623686} + m_Father: {fileID: 1069171838} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &54593735 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + m_PrefabInstance: {fileID: 3881543212194595465} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &58142553 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 667884692328640684, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} +--- !u!4 &58142554 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 667884692328640685, guid: 35e3497ccf3c249a293c8397aa579b08, type: 3} + m_PrefabInstance: {fileID: 58142553} + m_PrefabAsset: {fileID: 0} +--- !u!1 &67294739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 67294742} + - component: {fileID: 67294741} + - component: {fileID: 67294740} + 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 &67294740 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 67294739} + m_Enabled: 1 +--- !u!20 &67294741 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 67294739} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 2 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_GateFitMode: 2 + m_FOVAxisMode: 0 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.01 + 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 &67294742 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 67294739} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: -0.38, z: -2.1} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &101356447 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3686663121084432983, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f528a09e27a7e486a800c4356f10b387, type: 3} +--- !u!4 &101356448 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3686663121084432982, guid: f528a09e27a7e486a800c4356f10b387, type: 3} + m_PrefabInstance: {fileID: 101356447} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &102275191 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5443099002530323650, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} +--- !u!4 &102275192 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5443099002530323649, guid: ccd47fdc8234b45ac86cf08146244043, type: 3} + m_PrefabInstance: {fileID: 102275191} + m_PrefabAsset: {fileID: 0} +--- !u!4 &107160361 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + m_PrefabInstance: {fileID: 1702764286147871376} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &110204479 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 8241343374206212514, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b63f336dab294481f802735bce4ac020, type: 3} +--- !u!4 &110204480 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8241343374206212515, guid: b63f336dab294481f802735bce4ac020, type: 3} + m_PrefabInstance: {fileID: 110204479} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &120593161 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 6694387389254619033, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} +--- !u!4 &120593162 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6694387389254619034, guid: 1fa6c378c954c4ad1a4d7dfdac72ee87, type: 3} + m_PrefabInstance: {fileID: 120593161} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &145702766 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 4846505971524488622, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} +--- !u!4 &145702767 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4846505971524488625, guid: dfa894c037a724ec3a0382d8c941f8ad, type: 3} + m_PrefabInstance: {fileID: 145702766} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &171630440 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881832983902994404, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} +--- !u!4 &171630441 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3881832983902994403, guid: 0e17b4107c4a64a15ac4d54fd7cd7b62, type: 3} + m_PrefabInstance: {fileID: 171630440} + m_PrefabAsset: {fileID: 0} +--- !u!4 &187640197 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + m_PrefabInstance: {fileID: 9098628202384409056} + m_PrefabAsset: {fileID: 0} +--- !u!4 &202298392 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + m_PrefabInstance: {fileID: 7171129368698226128} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &210614146 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 4464962833578890291, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 910cf0980701247febfe878c455c85a8, type: 3} +--- !u!4 &210614147 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4464962833578890292, guid: 910cf0980701247febfe878c455c85a8, type: 3} + m_PrefabInstance: {fileID: 210614146} + m_PrefabAsset: {fileID: 0} +--- !u!1 &211293265 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 211293266} + m_Layer: 0 + m_Name: Socket&Switches_2048x2048 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &211293266 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 211293265} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.555, y: 0.497, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 537802041} + - {fileID: 1266160634} + - {fileID: 609278500} + - {fileID: 1154586155} + m_Father: {fileID: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!4 &221259967 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + m_PrefabInstance: {fileID: 8932091428317664228} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &227184084 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 2182657492072143542, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} +--- !u!4 &227184085 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2182657492072143543, guid: 3c66e947b77ac4b77938c229f34b2e44, type: 3} + m_PrefabInstance: {fileID: 227184084} + m_PrefabAsset: {fileID: 0} +--- !u!4 &247349764 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + m_PrefabInstance: {fileID: 4645049893751717234} + m_PrefabAsset: {fileID: 0} +--- !u!4 &279584606 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + m_PrefabInstance: {fileID: 8378082133953054810} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &288544705 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 7005995415685285210, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: dd2d9bf506c154232be277c2320cba15, type: 3} +--- !u!4 &288544706 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7005995415685285211, guid: dd2d9bf506c154232be277c2320cba15, type: 3} + m_PrefabInstance: {fileID: 288544705} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &293617641 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 7890020295721599032, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f0e35199af836459f8485b998fe6a051, type: 3} +--- !u!4 &293617642 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7890020295721599035, guid: f0e35199af836459f8485b998fe6a051, type: 3} + m_PrefabInstance: {fileID: 293617641} + m_PrefabAsset: {fileID: 0} +--- !u!4 &307568724 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + m_PrefabInstance: {fileID: 7180330517332316266} + m_PrefabAsset: {fileID: 0} +--- !u!4 &312980081 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + m_PrefabInstance: {fileID: 3305534054814143198} + m_PrefabAsset: {fileID: 0} +--- !u!4 &421516415 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + m_PrefabInstance: {fileID: 2269799229428906622} + m_PrefabAsset: {fileID: 0} +--- !u!4 &427133552 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + m_PrefabInstance: {fileID: 3579613557660007356} + m_PrefabAsset: {fileID: 0} +--- !u!4 &435322886 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + m_PrefabInstance: {fileID: 5713827380690521056} + m_PrefabAsset: {fileID: 0} +--- !u!4 &458672557 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + m_PrefabInstance: {fileID: 8036534321618783563} + m_PrefabAsset: {fileID: 0} +--- !u!4 &464345418 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + m_PrefabInstance: {fileID: 3731594891150973300} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &480336328 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2894509541176983, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} +--- !u!4 &480336329 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2894509541176968, guid: 018d984dfe2e143d78fec0b664b8e68a, type: 3} + m_PrefabInstance: {fileID: 480336328} + m_PrefabAsset: {fileID: 0} +--- !u!1 &497408919 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 497408920} + m_Layer: 0 + m_Name: WhiteDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &497408920 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 497408919} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2020001898922248096} + - {fileID: 6468326218189044623} + - {fileID: 2588358207158835252} + - {fileID: 8736365120847517365} + - {fileID: 7855782071179066511} + - {fileID: 3444761116029071192} + - {fileID: 7718459195245454131} + - {fileID: 3581430312286521554} + - {fileID: 4479324975572142347} + - {fileID: 6245708479679953236} + - {fileID: 5164843960469134334} + m_Father: {fileID: 1928696525} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &507195880 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 507195881} + m_Layer: 0 + m_Name: WhiteDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &507195881 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 507195880} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1397819412} + - {fileID: 797178299} + - {fileID: 605016774} + - {fileID: 1883749382} + - {fileID: 247349764} + - {fileID: 54593735} + - {fileID: 511265957} + - {fileID: 1803722938} + - {fileID: 435322886} + - {fileID: 24349408} + - {fileID: 759817781} + m_Father: {fileID: 1660092291} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &511265957 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + m_PrefabInstance: {fileID: 140814368660516030} + m_PrefabAsset: {fileID: 0} +--- !u!4 &525470865 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + m_PrefabInstance: {fileID: 1744851394910539934} + m_PrefabAsset: {fileID: 0} +--- !u!1 &537802040 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 537802041} + m_Layer: 0 + m_Name: Black + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &537802041 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 537802040} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7989907660336482858} + - {fileID: 1667712900} + - {fileID: 882834633} + - {fileID: 543450652945724464} + - {fileID: 543450652078097058} + - {fileID: 1404167939} + - {fileID: 5722267907989336507} + - {fileID: 2538223602166514596} + - {fileID: 7403607952414204477} + - {fileID: 8849987496042047777} + - {fileID: 2387915796062736961} + m_Father: {fileID: 211293266} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &605016774 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + m_PrefabInstance: {fileID: 8368001429052097464} + m_PrefabAsset: {fileID: 0} +--- !u!1 &609278499 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 609278500} + m_Layer: 0 + m_Name: White + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &609278500 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 609278499} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2461640899819739410} + - {fileID: 6089898046371248444} + - {fileID: 5587153173439786007} + - {fileID: 1896786891422135349} + - {fileID: 2022356725457092079} + - {fileID: 7214420444904760451} + - {fileID: 1612862615862075670} + - {fileID: 3667820109805517542} + - {fileID: 3543585550034930483} + - {fileID: 6724083592768765571} + - {fileID: 1012881757576551520} + m_Father: {fileID: 211293266} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &645856351 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + m_PrefabInstance: {fileID: 188529300907592090} + m_PrefabAsset: {fileID: 0} +--- !u!1 &653425211 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 653425212} + m_Layer: 0 + m_Name: White + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &653425212 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 653425211} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 8104143394610879232} + - {fileID: 766859539996685331} + - {fileID: 9184189684966903935} + - {fileID: 3948136030253977224} + - {fileID: 456515722419348614} + - {fileID: 5521806660576591386} + - {fileID: 8381696786776239522} + - {fileID: 1046406412516703928} + - {fileID: 539061244484836945} + - {fileID: 9172931782920648333} + - {fileID: 2726555657622512766} + m_Father: {fileID: 1928696525} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &683765958 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 683765959} + m_Layer: 0 + m_Name: Black + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &683765959 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 683765958} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2039283622} + - {fileID: 464345418} + - {fileID: 953949652} + - {fileID: 645856351} + - {fileID: 1714458224} + - {fileID: 1935282449} + - {fileID: 984908060} + - {fileID: 843995160} + - {fileID: 1879883387} + - {fileID: 1264601342} + - {fileID: 8250594198580400741} + m_Father: {fileID: 1660092291} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &705311454 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + m_PrefabInstance: {fileID: 7708584024014721366} + m_PrefabAsset: {fileID: 0} +--- !u!4 &722736353 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + m_PrefabInstance: {fileID: 8672476020497671477} + m_PrefabAsset: {fileID: 0} +--- !u!4 &722798997 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + m_PrefabInstance: {fileID: 1902927001211602379} + m_PrefabAsset: {fileID: 0} +--- !u!4 &723370839 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + m_PrefabInstance: {fileID: 2310206756443106529} + m_PrefabAsset: {fileID: 0} +--- !u!1 &734734643 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 734734644} + m_Layer: 0 + m_Name: Black + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &734734644 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 734734643} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2038530825} + - {fileID: 293617642} + - {fileID: 1099281120} + - {fileID: 789639145} + - {fileID: 1138059143} + - {fileID: 1800892487} + - {fileID: 1256494071} + - {fileID: 1788920126} + - {fileID: 2074763291} + - {fileID: 928172037} + - {fileID: 1191693897} + m_Father: {fileID: 1069171838} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &737863715 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + m_PrefabInstance: {fileID: 927716467700923252} + m_PrefabAsset: {fileID: 0} +--- !u!4 &759817781 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + m_PrefabInstance: {fileID: 1382540826032787817} + m_PrefabAsset: {fileID: 0} +--- !u!4 &771663867 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + m_PrefabInstance: {fileID: 179393529488302622} + m_PrefabAsset: {fileID: 0} +--- !u!4 &772810662 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + m_PrefabInstance: {fileID: 4104825857304659012} + m_PrefabAsset: {fileID: 0} +--- !u!4 &787236512 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + m_PrefabInstance: {fileID: 8504903453663644379} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &789639144 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6011813619027171751, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} +--- !u!4 &789639145 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6011813619027171750, guid: 30c7fee3173b048da8fa42a5d0bf4227, type: 3} + m_PrefabInstance: {fileID: 789639144} + m_PrefabAsset: {fileID: 0} +--- !u!4 &797178299 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + m_PrefabInstance: {fileID: 8957799065557132895} + m_PrefabAsset: {fileID: 0} +--- !u!4 &801939728 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + m_PrefabInstance: {fileID: 9035404246923875575} + m_PrefabAsset: {fileID: 0} +--- !u!4 &808600735 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + m_PrefabInstance: {fileID: 555636672548926611} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &833660299 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494300772735149685, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} +--- !u!4 &833660300 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6494300772735149684, guid: bbbc6f7a16d534ffcab82f531cb6abc2, type: 3} + m_PrefabInstance: {fileID: 833660299} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &842655643 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 433654707263373785, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} +--- !u!4 &842655644 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 433654707263373784, guid: 8e5737a43804b456f8baeda05c8a8d06, type: 3} + m_PrefabInstance: {fileID: 842655643} + m_PrefabAsset: {fileID: 0} +--- !u!4 &843995160 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + m_PrefabInstance: {fileID: 7036811822999308784} + m_PrefabAsset: {fileID: 0} +--- !u!4 &846241290 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + m_PrefabInstance: {fileID: 4419765264965278294} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &881093345 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 2565630725004344933, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} +--- !u!4 &881093346 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2565630725004344934, guid: 5e0aa061218e946c79c9508cd99f9da9, type: 3} + m_PrefabInstance: {fileID: 881093345} + m_PrefabAsset: {fileID: 0} +--- !u!4 &882834633 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + m_PrefabInstance: {fileID: 5587153173487966584} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &928172036 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4072392365010477677, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 92150b0b3a9d0402890b05592380816e, type: 3} +--- !u!4 &928172037 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4072392365010477676, guid: 92150b0b3a9d0402890b05592380816e, type: 3} + m_PrefabInstance: {fileID: 928172036} + m_PrefabAsset: {fileID: 0} +--- !u!4 &941878056 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + m_PrefabInstance: {fileID: 225839275047756079} + m_PrefabAsset: {fileID: 0} +--- !u!4 &948254212 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + m_PrefabInstance: {fileID: 8215230692579710179} + m_PrefabAsset: {fileID: 0} +--- !u!4 &953949652 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + m_PrefabInstance: {fileID: 6701766152712179831} + m_PrefabAsset: {fileID: 0} +--- !u!4 &973867648 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + m_PrefabInstance: {fileID: 5007359943989423975} + m_PrefabAsset: {fileID: 0} +--- !u!4 &984908060 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + m_PrefabInstance: {fileID: 2478846735197828952} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1010178301 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + m_PrefabInstance: {fileID: 3174152868675188984} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1021681520 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + m_PrefabInstance: {fileID: 6434598123497571366} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1031660686 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1031660687} + m_Layer: 0 + m_Name: BlackDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1031660687 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031660686} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6257998923906726778} + - {fileID: 3255887362496581778} + - {fileID: 9191170956232739140} + - {fileID: 100478712308551044} + - {fileID: 6853184553745469273} + - {fileID: 7757223452501469650} + - {fileID: 8443399085079617453} + - {fileID: 773908705592535175} + - {fileID: 5421250576438135003} + - {fileID: 3433653051403809865} + - {fileID: 7757914275500736829} + m_Father: {fileID: 1928696525} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1069171837 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1069171838} + m_Layer: 0 + m_Name: Socket&Switches_128x128 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1069171838 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1069171837} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.555, y: -1.387, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 734734644} + - {fileID: 30476144} + - {fileID: 1919807586} + - {fileID: 1929547409} + m_Father: {fileID: 0} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!4 &1082847591 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + m_PrefabInstance: {fileID: 9023376837468690098} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1090941393 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + m_PrefabInstance: {fileID: 6217799844588827403} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1099281119 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921818913502203079, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} +--- !u!4 &1099281120 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1921818913502203072, guid: a859eacefd2f84324b4256d2308ae4ff, type: 3} + m_PrefabInstance: {fileID: 1099281119} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1106623686 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + m_PrefabInstance: {fileID: 3261935403052191574} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1138059142 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 3485922752003587030, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} +--- !u!4 &1138059143 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3485922752003587031, guid: 7f5149788f7b14bbf877b707d9a9c4af, type: 3} + m_PrefabInstance: {fileID: 1138059142} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1140576805 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + m_PrefabInstance: {fileID: 8220994844876546804} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1141405161 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 417705589063113543, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} +--- !u!4 &1141405162 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 417705589063113542, guid: be880460f97234ec49fb0621b8f89c2d, type: 3} + m_PrefabInstance: {fileID: 1141405161} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1148731665 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + m_PrefabInstance: {fileID: 5707939336191999240} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1152951524 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + m_PrefabInstance: {fileID: 528591227131432267} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1154586154 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1154586155} + m_Layer: 0 + m_Name: WhiteDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1154586155 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1154586154} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2461640900144681077} + - {fileID: 6089898045075167412} + - {fileID: 5587153173691014069} + - {fileID: 1896786892233903567} + - {fileID: 2022356725727103428} + - {fileID: 7214420444187326590} + - {fileID: 1612862614852370229} + - {fileID: 3667820108393639767} + - {fileID: 3543585549969765976} + - {fileID: 6724083591797092709} + - {fileID: 1012881757393641048} + m_Father: {fileID: 211293266} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1167250744 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1167250745} + m_Layer: 0 + m_Name: Black + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1167250745 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1167250744} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2118535941} + - {fileID: 1850261318} + - {fileID: 1933519349} + - {fileID: 1654337163} + - {fileID: 1021681520} + - {fileID: 1140576805} + - {fileID: 948254212} + - {fileID: 1171484272} + - {fileID: 1380299905} + - {fileID: 1693712066} + - {fileID: 1982580589} + m_Father: {fileID: 1881916041} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1171484272 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + m_PrefabInstance: {fileID: 9197150916567541618} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1172890525 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 5264489113016697700, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7668e60f30c7543818351a1e939e2481, type: 3} +--- !u!4 &1172890526 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5264489113016697703, guid: 7668e60f30c7543818351a1e939e2481, type: 3} + m_PrefabInstance: {fileID: 1172890525} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1189002283 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + m_PrefabInstance: {fileID: 1921997642683834370} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1191693897 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + m_PrefabInstance: {fileID: 4348625285268130131} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1192885624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1192885625} + m_Layer: 0 + m_Name: BlackDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1192885625 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1192885624} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1623480469} + - {fileID: 307568724} + - {fileID: 221259967} + - {fileID: 941878056} + - {fileID: 187640197} + - {fileID: 107160361} + - {fileID: 427133552} + - {fileID: 1189002283} + - {fileID: 1767674796} + - {fileID: 9691995} + - {fileID: 1811990231} + m_Father: {fileID: 1660092291} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1198228105 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 4696562797224507149, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} +--- !u!4 &1198228106 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4696562797224507150, guid: 0028efcb6c14c44aaa054dd59938ef86, type: 3} + m_PrefabInstance: {fileID: 1198228105} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1246538447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1246538448} + m_Layer: 0 + m_Name: WhiteDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1246538448 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1246538447} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 279584606} + - {fileID: 787236512} + - {fileID: 1384116963} + - {fileID: 2103765773} + - {fileID: 1905916988} + - {fileID: 2124438004} + - {fileID: 312980081} + - {fileID: 1010178301} + - {fileID: 525470865} + - {fileID: 29207254} + - {fileID: 2143938693} + m_Father: {fileID: 1881916041} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1256494070 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 6071995270076085854, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d1083476db884402b8be244749f6801b, type: 3} +--- !u!4 &1256494071 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6071995270076085855, guid: d1083476db884402b8be244749f6801b, type: 3} + m_PrefabInstance: {fileID: 1256494070} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1264601342 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + m_PrefabInstance: {fileID: 5480018870556356285} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1266160633 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1266160634} + m_Layer: 0 + m_Name: BlackDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1266160634 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1266160633} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2461640900090620025} + - {fileID: 6089898045581147134} + - {fileID: 5587153173826543639} + - {fileID: 1896786890684046512} + - {fileID: 2022356725252118548} + - {fileID: 7214420443868432770} + - {fileID: 1612862614201815696} + - {fileID: 3667820108766223624} + - {fileID: 3543585549158106893} + - {fileID: 6724083591722004299} + - {fileID: 1012881757752607285} + m_Father: {fileID: 211293266} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1275384841 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + m_PrefabInstance: {fileID: 1144862368845310782} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1360198837 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4703953568908846495, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d9efa74f7aced42b49351f971aafe689, type: 3} +--- !u!4 &1360198838 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4703953568908846492, guid: d9efa74f7aced42b49351f971aafe689, type: 3} + m_PrefabInstance: {fileID: 1360198837} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1380299905 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + m_PrefabInstance: {fileID: 3252226391433826860} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1381465654 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + m_PrefabInstance: {fileID: 15099400709792276} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1384116963 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + m_PrefabInstance: {fileID: 4153844324780423527} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1397542403 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 357558032254248033, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} +--- !u!4 &1397542404 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 357558032254248032, guid: fd832cbb50a2b43979598f1fde8f4dca, type: 3} + m_PrefabInstance: {fileID: 1397542403} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1397819412 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + m_PrefabInstance: {fileID: 7084408497693108164} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1404167939 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + m_PrefabInstance: {fileID: 7214420444538775843} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1409034828 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 3045365961846202775, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} +--- !u!4 &1409034829 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3045365961846202776, guid: fad610c21c27e47d5a46cb25f3653f3b, type: 3} + m_PrefabInstance: {fileID: 1409034828} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1437277415 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + m_PrefabInstance: {fileID: 8029828359957307827} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1493101563 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + m_PrefabInstance: {fileID: 5335596080296580291} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1623480469 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + m_PrefabInstance: {fileID: 3085042433336006758} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1643442316 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + m_PrefabInstance: {fileID: 3475867491907859734} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1643616058 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1643616060} + - component: {fileID: 1643616059} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &1643616059 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643616058} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 1 + m_Shape: 0 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + 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: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &1643616060 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643616058} + m_LocalRotation: {x: 0.26429996, y: -0.24894167, z: 0.070818946, w: 0.92906314} + 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_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 31.76, y: -30, z: 0} +--- !u!4 &1654337163 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + m_PrefabInstance: {fileID: 5545962638641634238} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1660092290 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1660092291} + m_Layer: 0 + m_Name: Socket&Switches_256x256 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1660092291 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1660092290} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.555, y: -0.908, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 683765959} + - {fileID: 1192885625} + - {fileID: 1747384901} + - {fileID: 507195881} + m_Father: {fileID: 0} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!1 &1665167903 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1665167904} + m_Layer: 0 + m_Name: Black + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1665167904 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1665167903} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2461640900805906440} + - {fileID: 6089898044827184324} + - {fileID: 5587153173556493101} + - {fileID: 1896786892155189607} + - {fileID: 2022356726035984931} + - {fileID: 7214420444887263622} + - {fileID: 1612862615313521116} + - {fileID: 3667820109605137879} + - {fileID: 3543585548446966394} + - {fileID: 6724083592623878437} + - {fileID: 3632976683812421998} + m_Father: {fileID: 1928696525} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1665866349 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + m_PrefabInstance: {fileID: 7857832937168584598} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1667712900 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + m_PrefabInstance: {fileID: 6089898045078971936} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1693712066 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + m_PrefabInstance: {fileID: 1185982860282230040} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1714458224 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + m_PrefabInstance: {fileID: 3717523825307213536} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1715506141 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 393664431694634946, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} +--- !u!4 &1715506142 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 393664431694634949, guid: 0ae9e234a53b64c5ebf9212437354766, type: 3} + m_PrefabInstance: {fileID: 1715506141} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1737079175 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + m_PrefabInstance: {fileID: 3644179383067584699} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1747384900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1747384901} + m_Layer: 0 + m_Name: White + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1747384901 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1747384900} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 772810662} + - {fileID: 1381465654} + - {fileID: 1918063060} + - {fileID: 1643442316} + - {fileID: 737863715} + - {fileID: 1858723258} + - {fileID: 1748988272} + - {fileID: 801939728} + - {fileID: 1946562061} + - {fileID: 1148731665} + - {fileID: 16732569} + m_Father: {fileID: 1660092291} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1748988272 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + m_PrefabInstance: {fileID: 2400247864896210420} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1764922157 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1764922158} + m_Layer: 0 + m_Name: BlackDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1764922158 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1764922157} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: -0.054, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1082847591} + - {fileID: 846241290} + - {fileID: 1437277415} + - {fileID: 1846076210} + - {fileID: 1090941393} + - {fileID: 421516415} + - {fileID: 1665866349} + - {fileID: 1493101563} + - {fileID: 771663867} + - {fileID: 202298392} + - {fileID: 808600735} + m_Father: {fileID: 1881916041} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1766578829 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 7481274395319973141, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} +--- !u!4 &1766578830 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7481274395319973142, guid: 4251663ee94a84e459ec13d94745c9e3, type: 3} + m_PrefabInstance: {fileID: 1766578829} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1767674796 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + m_PrefabInstance: {fileID: 3229186850819457148} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1778362462 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2700063069515007707, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} +--- !u!4 &1778362463 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2700063069515007704, guid: a6a43eac3c71047289c475d6a266a05f, type: 3} + m_PrefabInstance: {fileID: 1778362462} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1788920125 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7856254675157462014, guid: eed66b2387c924130818bcf7899e000d, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: eed66b2387c924130818bcf7899e000d, type: 3} +--- !u!4 &1788920126 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7856254675157462009, guid: eed66b2387c924130818bcf7899e000d, type: 3} + m_PrefabInstance: {fileID: 1788920125} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1796043168 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + m_PrefabInstance: {fileID: 6748271775828558008} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1800892486 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 8058311769751945507, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} +--- !u!4 &1800892487 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8058311769751945516, guid: b10fe3ad5ff984308b006a21b40526bf, type: 3} + m_PrefabInstance: {fileID: 1800892486} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1803722938 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + m_PrefabInstance: {fileID: 292056460740191044} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1811405448 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 4851962600794781373, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} +--- !u!4 &1811405449 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4851962600794781378, guid: fe6fc7ac0f4f3462cab12ea6a0e46527, type: 3} + m_PrefabInstance: {fileID: 1811405448} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1811990231 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + m_PrefabInstance: {fileID: 233463450738153481} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1846076210 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + m_PrefabInstance: {fileID: 3406779198845739907} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1850261318 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + m_PrefabInstance: {fileID: 4466998717190410060} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1851220092 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + m_PrefabInstance: {fileID: 6611739941800456212} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1858723258 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + m_PrefabInstance: {fileID: 7763973619085354454} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1879883387 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + m_PrefabInstance: {fileID: 4148613357859206434} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1881916040 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1881916041} + m_Layer: 0 + m_Name: Socket&Switches_512x512 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1881916041 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1881916040} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.555, y: -0.437, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1167250745} + - {fileID: 1764922158} + - {fileID: 2003410174} + - {fileID: 1246538448} + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!4 &1883749382 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + m_PrefabInstance: {fileID: 907685009605235399} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1905916988 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + m_PrefabInstance: {fileID: 2055071044645649543} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1918063060 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + m_PrefabInstance: {fileID: 6262354314780803831} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1919807585 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1919807586} + m_Layer: 0 + m_Name: White + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1919807586 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919807585} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 881093346} + - {fileID: 1715506142} + - {fileID: 1766578830} + - {fileID: 1409034829} + - {fileID: 101356448} + - {fileID: 16896162} + - {fileID: 58142554} + - {fileID: 1811405449} + - {fileID: 288544706} + - {fileID: 1172890526} + - {fileID: 458672557} + m_Father: {fileID: 1069171838} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &1922764834 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642802359636674085, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} +--- !u!4 &1922764835 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3642802359636674084, guid: b7cd9015f61d240fca7ab550fa145ebc, type: 3} + m_PrefabInstance: {fileID: 1922764834} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1928696524 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1928696525} + m_Layer: 0 + m_Name: Socket&Switches_1024x1024 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1928696525 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1928696524} + m_LocalRotation: {x: 0, y: 1, z: 0, w: 0} + m_LocalPosition: {x: -0.555, y: 0.04100001, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1665167904} + - {fileID: 1031660687} + - {fileID: 653425212} + - {fileID: 497408920} + m_Father: {fileID: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 180, z: 0} +--- !u!1 &1929547408 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1929547409} + m_Layer: 0 + m_Name: WhiteDirt + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &1929547409 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1929547408} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: -0.602, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1922764835} + - {fileID: 1778362463} + - {fileID: 6735391201576989491} + - {fileID: 145702767} + - {fileID: 1360198838} + - {fileID: 1198228106} + - {fileID: 210614147} + - {fileID: 227184085} + - {fileID: 480336329} + - {fileID: 2476328266371446948} + - {fileID: 1275384841} + m_Father: {fileID: 1069171838} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!4 &1933519349 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + m_PrefabInstance: {fileID: 4927980506020453390} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1935282449 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + m_PrefabInstance: {fileID: 4006137452432616766} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1946562061 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + m_PrefabInstance: {fileID: 3975026587130054574} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1982580589 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + m_PrefabInstance: {fileID: 3642970780195873503} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2000872587 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 8951484445563366778, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} +--- !u!4 &2000872588 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8951484445563366779, guid: 3d9dc1ad3fa864a7986a39db90271aa5, type: 3} + m_PrefabInstance: {fileID: 2000872587} + m_PrefabAsset: {fileID: 0} +--- !u!1 &2003410173 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2003410174} + m_Layer: 0 + m_Name: White + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &2003410174 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2003410173} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0.738, y: 0.182, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2085692548} + - {fileID: 2131479392} + - {fileID: 705311454} + - {fileID: 722736353} + - {fileID: 722798997} + - {fileID: 1851220092} + - {fileID: 1152951524} + - {fileID: 1796043168} + - {fileID: 723370839} + - {fileID: 1737079175} + - {fileID: 973867648} + m_Father: {fileID: 1881916041} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1001 &2038530824 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 4288683551392429052, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} +--- !u!4 &2038530825 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4288683551392429053, guid: 1a1e90ff3d1474abea63b81be22af264, type: 3} + m_PrefabInstance: {fileID: 2038530824} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2039283622 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + m_PrefabInstance: {fileID: 6773943097021471642} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2074763290 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6129082173158878491, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} +--- !u!4 &2074763291 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6129082173158878490, guid: 4bd87fcbd18ab4370a2b04829f11085c, type: 3} + m_PrefabInstance: {fileID: 2074763290} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2085692548 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + m_PrefabInstance: {fileID: 8727327063187273386} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2103765773 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + m_PrefabInstance: {fileID: 8449845442284574165} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2118535941 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + m_PrefabInstance: {fileID: 3931021388699016035} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2124438004 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + m_PrefabInstance: {fileID: 9089088531419522762} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2131479392 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + m_PrefabInstance: {fileID: 1383374731565548496} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2143938693 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + m_PrefabInstance: {fileID: 5174397002630556660} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &15099400709792276 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 15099402024098849, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 15099402024098850, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 16d0a99cd66784cdfbb0f0c134ccda5a, type: 3} +--- !u!4 &100478712308551044 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + m_PrefabInstance: {fileID: 7623227053691991716} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &140814368660516030 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 140814368425025562, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 140814368425025563, guid: 32784447fab99447590af3d14a2621e3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 32784447fab99447590af3d14a2621e3, type: 3} +--- !u!1001 &179393529488302622 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 179393529181226468, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 179393529181226469, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: faa4f8d61024a40c6a48085f54e9b81b, type: 3} +--- !u!1001 &188529300907592090 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 188529300400993732, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 188529300400993733, guid: 37065116d40494297b5015acc5fa9180, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 37065116d40494297b5015acc5fa9180, type: 3} +--- !u!1001 &225839275047756079 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420551, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 225839275989420552, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 619f74d4e4ea143c5b3304da8487deca, type: 3} +--- !u!1001 &233463450738153481 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045406, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 233463452550045407, guid: 91335d38a55ee46069796295e811c0b4, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 91335d38a55ee46069796295e811c0b4, type: 3} +--- !u!1001 &240235663453017139 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4249176244879974878, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ba4a49445c07a4f21a28863d57960492, type: 3} +--- !u!1001 &292056460740191044 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 292056461184615421, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 292056461184615422, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 01d9cb907f99a4ae68ce0f1e0b6fe8d9, type: 3} +--- !u!1001 &376583399062872287 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4255944314136357333, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} +--- !u!4 &456515722419348614 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + m_PrefabInstance: {fileID: 1894496295017334563} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &528591227131432267 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 528591228132272552, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 528591228132272559, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d62febfe192484a609cd93e6302e7a5a, type: 3} +--- !u!4 &539061244484836945 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + m_PrefabInstance: {fileID: 6726605119706647813} + m_PrefabAsset: {fileID: 0} +--- !u!4 &543450652078097058 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + m_PrefabInstance: {fileID: 1989011893928517323} + m_PrefabAsset: {fileID: 0} +--- !u!4 &543450652945724464 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + m_PrefabInstance: {fileID: 2150474172931916234} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &551596620824977375 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 8489768337820013520, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} +--- !u!1001 &555636672548926611 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalPosition.x + value: -1.1800001 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329868, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 555636672814329869, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b5e6956da1e6247c9b973952e73cd0ff, type: 3} +--- !u!1001 &640294189017792982 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 640294189037554441, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 640294189037554486, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a7270bbb288764e23b4bb28af2bd20f5, type: 3} +--- !u!1001 &646016397572797269 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4885062888904817551, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} +--- !u!1001 &751713545734241016 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7653927414285009777, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} +--- !u!4 &766859539996685331 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + m_PrefabInstance: {fileID: 3767828981886068946} + m_PrefabAsset: {fileID: 0} +--- !u!4 &773908705592535175 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + m_PrefabInstance: {fileID: 6891775664668218545} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &863996940043053502 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 6245708478024997082, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c055fad2f147e452db926da380a999f9, type: 3} +--- !u!1001 &885505070113070996 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 164250256236037109, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} +--- !u!1001 &907685009605235399 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604929, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 907685011479604930, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7bd63af620f884f0b965b9b44d25b13e, type: 3} +--- !u!1001 &927716467700923252 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 927716468117541718, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 927716468117541719, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8f5a191aa18ee40aca061aaee3c92ba8, type: 3} +--- !u!1001 &956934025343056068 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6468326217425854583, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} +--- !u!4 &1012881757393641048 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + m_PrefabInstance: {fileID: 2754077788929028866} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1012881757576551520 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 164250256236037108, guid: 15833557200d64eac9f49fe1acd52fe3, type: 3} + m_PrefabInstance: {fileID: 885505070113070996} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1012881757752607285 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + m_PrefabInstance: {fileID: 4725579573848883103} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1046406412516703928 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + m_PrefabInstance: {fileID: 2620071342907887689} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1076050406750958312 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 1425174364268753294, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 863043faf27df4bec96381715880934d, type: 3} +--- !u!1001 &1082159260153947380 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4479324976381924013, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} +--- !u!1001 &1133205658148587881 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 7757223452044476650, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} +--- !u!1001 &1144862368845310782 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 1144862369851670326, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1144862369851670327, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 18d34ce942ae543f090c1cc46cb25ae9, type: 3} +--- !u!1001 &1185982860282230040 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 1185982860874550233, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1185982860874550234, guid: f932c2d7154824784afda4ed85338025, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f932c2d7154824784afda4ed85338025, type: 3} +--- !u!1001 &1186882641197149307 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 4970581426453283000, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e2a7486442318456ca50c657deddaf2a, type: 3} +--- !u!1001 &1287785537713053405 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4156090560338200515, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} +--- !u!1001 &1333488367121257504 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 6847739379371683596, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} +--- !u!1001 &1382540826032787817 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944668, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1382540825549944669, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8b086f7e9cab341e2b9a43e30e107606, type: 3} +--- !u!1001 &1383374731565548496 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 1383374732287314063, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1383374732287314096, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 36ccfa4595bc1423084811d323a3c2cc, type: 3} +--- !u!1001 &1594421533648634110 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7514167986986108393, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} +--- !u!4 &1612862614201815696 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + m_PrefabInstance: {fileID: 7155921545798149304} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1612862614852370229 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + m_PrefabInstance: {fileID: 9043073840796936330} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1612862615313521116 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1769048393407736628, guid: 863043faf27df4bec96381715880934d, type: 3} + m_PrefabInstance: {fileID: 1076050406750958312} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1612862615862075670 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + m_PrefabInstance: {fileID: 7076226836586481801} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1654559870216712533 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 3827390617198618976, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} +--- !u!1001 &1702764286147871376 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 1702764286120812984, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1702764286120812985, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f7d710f8b458741e8a119e06485b1e5e, type: 3} +--- !u!1001 &1733452070488956516 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 4998655972760629056, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} +--- !u!1001 &1744851394910539934 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 1744851394519555086, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1744851394519555087, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e97717330cc894c569f8d0ce6ddf51fa, type: 3} +--- !u!1001 &1848268225340764971 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 6776624547686148308, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} +--- !u!1001 &1890593782293737213 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 5165502839096790845, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} +--- !u!1001 &1892923734208666108 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 945208424602566313, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} +--- !u!1001 &1894496295017334563 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 1681131675776629023, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2026414183811310501, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3ee173ac5436d4385885f22fe453afbf, type: 3} +--- !u!4 &1896786890684046512 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + m_PrefabInstance: {fileID: 1960831086417644470} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1896786891422135349 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + m_PrefabInstance: {fileID: 3213359487944688130} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1896786892155189607 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + m_PrefabInstance: {fileID: 6718796791332474472} + m_PrefabAsset: {fileID: 0} +--- !u!4 &1896786892233903567 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + m_PrefabInstance: {fileID: 7165069134915616193} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &1902927001211602379 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648094, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1902927001931648095, guid: 39b2b030790084f5696cada8fafbe964, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 39b2b030790084f5696cada8fafbe964, type: 3} +--- !u!1001 &1921997642683834370 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 1921997643661204520, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1921997643661204521, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3065ed8d9d7234caca0da0628473ed12, type: 3} +--- !u!1001 &1960831086417644470 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 100478712593553158, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 733849759224221116, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 29bada906fc964cb2ae07b25f667d2d7, type: 3} +--- !u!1001 &1975337123141532704 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2955245012789804367, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} +--- !u!1001 &1989011893928517323 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 1682949979569866451, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2022356726727253097, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7d1f130ac09034be29a3fa28e5a15b19, type: 3} +--- !u!4 &2020001898922248096 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + m_PrefabInstance: {fileID: 3998154543061359468} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2022356725252118548 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + m_PrefabInstance: {fileID: 4831163592501774195} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2022356725457092079 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 456515722358826003, guid: 1d6a2d50a0f3a476c905e020bf695a0c, type: 3} + m_PrefabInstance: {fileID: 1892923734208666108} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2022356725727103428 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + m_PrefabInstance: {fileID: 8148562682098684600} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2022356726035984931 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + m_PrefabInstance: {fileID: 2174479774218950949} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2055042112987692664 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 2055042112980047021, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055042112980047022, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c8951ec98797348ebbcd63fba84a7906, type: 3} +--- !u!1001 &2055071044645649543 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452475, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2055071046013452476, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8bd764b12552b433cbbee36b24bcfb67, type: 3} +--- !u!1001 &2150474172931916234 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 1232135871692189504, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1896786890276402682, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e2c8e1c811e554af08a31a117c27289e, type: 3} +--- !u!1001 &2174479774218950949 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 161451665892354822, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 681811299983225276, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1d25386b0f71646bbb7a62ca0b9ff32e, type: 3} +--- !u!1001 &2269799229428906622 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 2269799229546262016, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2269799229546262017, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f2a0f75c5ec2449caad11cf952c649a8, type: 3} +--- !u!1001 &2310206756443106529 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947318, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2310206757061947319, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1bcaebdb51ff0483f8adad41df8946a5, type: 3} +--- !u!1001 &2375624748411712336 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 2375624748402413578, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2375624748402413579, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4502a62ce576d43d4ac5168a09a00660, type: 3} +--- !u!1001 &2377663711789721231 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 4963509568761106184, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} +--- !u!4 &2387915796062736961 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + m_PrefabInstance: {fileID: 3399635338569935778} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2400247864896210420 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764036, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2400247864496764059, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0fba58dddba7b4c1488808e51220fb21, type: 3} +--- !u!1001 &2457965655356680504 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 9172931784141608890, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c3588d84549804500905d9b00d4d39c3, type: 3} +--- !u!4 &2461640899819739410 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + m_PrefabInstance: {fileID: 5935236480092310603} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2461640900090620025 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + m_PrefabInstance: {fileID: 8426623606353766648} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2461640900144681077 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + m_PrefabInstance: {fileID: 4477136981127066134} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2461640900805906440 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + m_PrefabInstance: {fileID: 5053151359479662269} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2476328266371446948 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + m_PrefabInstance: {fileID: 3292201551160222326} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2478846735197828952 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 2478846735106897475, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2478846735106897476, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 09c9e5a93ac4e494e8583eca6ff4da65, type: 3} +--- !u!4 &2538223602166514596 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3667820108411067769, guid: d172e9a794f9c4c4980f4ae5ac52ba55, type: 3} + m_PrefabInstance: {fileID: 1287785537713053405} + m_PrefabAsset: {fileID: 0} +--- !u!4 &2588358207158835252 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3827390617198618977, guid: 9770f7e4b37524b8cbc06c3dab0c8dca, type: 3} + m_PrefabInstance: {fileID: 1654559870216712533} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2614034242034087889 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6879962689591473771, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} +--- !u!1001 &2620071342907887689 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 2419023141930759243, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3087719023812226801, guid: 6970bb01121c4408998223c011d63f68, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6970bb01121c4408998223c011d63f68, type: 3} +--- !u!1001 &2656363580755084547 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalPosition.x + value: -1.1800001 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394074, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2656363580765394075, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 93b084a46385a46a3b9383bc35db05ce, type: 3} +--- !u!4 &2726555657622512766 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + m_PrefabInstance: {fileID: 7878058747991266876} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &2754077788929028866 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362842, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2897514129424362843, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 943a70f3798324b9e9dc6ecf1bd26f57, type: 3} +--- !u!1001 &2846775085646657003 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6724083591365172427, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} +--- !u!1001 &2936242286227412861 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5521806659532223487, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} +--- !u!1001 &3085042433336006758 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 3085042431712526578, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3085042431712526579, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9c95facc6992545f181b3bb5184e54b1, type: 3} +--- !u!1001 &3174152868675188984 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 3174152867801849860, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3174152867801849861, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0f2cded10c4334854b52f01ff1da4e51, type: 3} +--- !u!1001 &3201664185847597966 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 1292481401329590204, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} +--- !u!1001 &3213359487944688130 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3948136029902763575, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4431903092072918157, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9aa0e7d5e754145ec8361c9d727c9cfe, type: 3} +--- !u!1001 &3229186850819457148 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830800, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3229186849354830807, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d9f8ca3c658ca43028b2dca425283c8d, type: 3} +--- !u!1001 &3252226391433826860 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 3252226392747009708, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3252226392747009709, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f3201a17e357f49eba0a0e18d21e67df, type: 3} +--- !u!4 &3255887362496581778 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + m_PrefabInstance: {fileID: 3719622771419533065} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3261935403052191574 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 30476144} + m_Modifications: + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479440, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3261935401971479443, guid: db3a9c432961442768057495a25b42b3, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: db3a9c432961442768057495a25b42b3, type: 3} +--- !u!1001 &3292201551160222326 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090898, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1147732557479090899, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 616bc2ace883c4b649a13ebb89bc0e32, type: 3} +--- !u!1001 &3305534054814143198 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 3305534054518022318, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3305534054518022319, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2821c86d7372242df8db12cdfe043eb2, type: 3} +--- !u!1001 &3373342293557027168 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 5882914058063507742, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 048eca848d7d14f3fb326332fb056918, type: 3} +--- !u!1001 &3399635338569935778 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 1012881758796806626, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1012881758796806627, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b9e6f144815e9457a9a64e4cb4a69d10, type: 3} +--- !u!1001 &3406779198845739907 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631473, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3406779199416631474, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d5a105f2dc42145fb81169d0a82ebc22, type: 3} +--- !u!4 &3433653051403809865 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + m_PrefabInstance: {fileID: 5984091603211228196} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3444761116029071192 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + m_PrefabInstance: {fileID: 4379634588512651175} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3475867491907859734 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194906, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3475867490281194909, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e713b6b7695444557a9e0d3367044ca3, type: 3} +--- !u!4 &3543585548446966394 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + m_PrefabInstance: {fileID: 4650180701402550638} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3543585549158106893 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + m_PrefabInstance: {fileID: 8795951070436633713} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3543585549969765976 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4479324976381924012, guid: bcbf28884fa494b69810308bf6ca2a43, type: 3} + m_PrefabInstance: {fileID: 1082159260153947380} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3543585550034930483 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + m_PrefabInstance: {fileID: 3915450038529765056} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3572202811423194241 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalPosition.x + value: -1.1800001 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4894564187005480677, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} +--- !u!1001 &3579613557660007356 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810380, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3579613557769810387, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1216abb4630d84d07afe7897f27e7f40, type: 3} +--- !u!4 &3581430312286521554 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + m_PrefabInstance: {fileID: 5114371790062042320} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3604031424022767157 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9191170955820942883, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} +--- !u!4 &3632976683812421998 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2955245012789804366, guid: 4bbea60f7ac6d4727a9a9af04a42ba28, type: 3} + m_PrefabInstance: {fileID: 1975337123141532704} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3642970780195873503 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896178, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3642970781636896179, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4b51ec02f89ec43a49df657eff42f3d5, type: 3} +--- !u!1001 &3644179383067584699 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582652, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3644179382605582653, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: aebefbd531e624f5393efbdd3cb792f9, type: 3} +--- !u!4 &3667820108393639767 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3581430310994787172, guid: ba4a49445c07a4f21a28863d57960492, type: 3} + m_PrefabInstance: {fileID: 240235663453017139} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3667820108766223624 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + m_PrefabInstance: {fileID: 4061067270996829646} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3667820109605137879 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + m_PrefabInstance: {fileID: 4002630370369766690} + m_PrefabAsset: {fileID: 0} +--- !u!4 &3667820109805517542 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + m_PrefabInstance: {fileID: 4351361118997335036} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3674169760956137320 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 9184189684909511550, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} +--- !u!1001 &3717523825307213536 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 3717523826948198543, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3717523826948198544, guid: c1eb33b9b24754096805593196ac4661, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c1eb33b9b24754096805593196ac4661, type: 3} +--- !u!1001 &3719622771419533065 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284507, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2211827593561284508, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e8d6c15cc57244e96a7c3ea4a13db469, type: 3} +--- !u!1001 &3731594891150973300 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 3731594890788339773, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3731594890788339774, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 67b5c99b265994ee385c1c080f27e408, type: 3} +--- !u!1001 &3767828981886068946 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945281, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534679313401945286, guid: 605b863d69124457182d1e47664a522e, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 605b863d69124457182d1e47664a522e, type: 3} +--- !u!1001 &3881543212194595465 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525646, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3881543212148525647, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 25f3380a14e2b4c0eaaa5d588d180b3d, type: 3} +--- !u!1001 &3915450038529765056 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 539061245988382194, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 539061245988382195, guid: e53611efed90b4d3db0de35243a59820, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e53611efed90b4d3db0de35243a59820, type: 3} +--- !u!1001 &3931021388699016035 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411750, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3931021389600411751, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0d3e2d0b7f8b845e59d4396a2f48bdc1, type: 3} +--- !u!4 &3948136030253977224 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1919659685028087046, guid: 59912dbde2f7c488b94e700b5b98a9a6, type: 3} + m_PrefabInstance: {fileID: 3201664185847597966} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &3975026587130054574 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 3975026586391472546, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3975026586391472547, guid: 47f6415f522c5429792218b90d73b53e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 47f6415f522c5429792218b90d73b53e, type: 3} +--- !u!1001 &3998154543061359468 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 2323824376809064054, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3131181903523699916, guid: e14e47669a58645f9a5c4c3675712145, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e14e47669a58645f9a5c4c3675712145, type: 3} +--- !u!1001 &4002630370369766690 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 390271556113721589, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1018188745715266127, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3c03aade4e60b4276aa8be696915d883, type: 3} +--- !u!1001 &4006137452432616766 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 4006137453797211182, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4006137453797211183, guid: 6d466b6522d024864a011c022355e388, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6d466b6522d024864a011c022355e388, type: 3} +--- !u!1001 &4061067270996829646 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 141486747564434044, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 773908705831860422, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 563c59fc144294fbd9e2e361c507910f, type: 3} +--- !u!1001 &4104825857304659012 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 4104825857001628641, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4104825857001628642, guid: 3d9b13da47040418cad214176ef771ca, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3d9b13da47040418cad214176ef771ca, type: 3} +--- !u!1001 &4148613357859206434 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 4148613356517837656, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4148613356517837657, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 08947a1e4fac04c9cb13d69891b7d0c2, type: 3} +--- !u!1001 &4153844324780423527 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568516, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4153844323939568517, guid: 74766334888c849ae89950dd20eb81e0, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 74766334888c849ae89950dd20eb81e0, type: 3} +--- !u!1001 &4348625285268130131 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 734734644} + m_Modifications: + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalPosition.x + value: -1.1800001 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014874, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4348625286292014875, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 308825b97f4cb44fcb896e600a78a71a, type: 3} +--- !u!1001 &4351361118997335036 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 418348482588699552, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1046406413975662874, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 2c45e016b68b0431f9d20d686ecd52a5, type: 3} +--- !u!1001 &4379634588512651175 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 1371813996758444286, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1371813996758444287, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6cc20f0af18474b47b89dad5997c9ad9, type: 3} +--- !u!1001 &4419765264965278294 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342236, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4419765264190342239, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 05829de290b6d411d9c1b1a162633fb2, type: 3} +--- !u!1001 &4466998717190410060 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 4466998718830882825, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4466998718830882826, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 741902c8485fd45579b133ff8eee5a62, type: 3} +--- !u!1001 &4477136981127066134 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 1676374434817374425, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020001898461241955, guid: 669c621ade35e47bc857dbef78b75992, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 669c621ade35e47bc857dbef78b75992, type: 3} +--- !u!4 &4479324975572142347 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4255944314136357332, guid: 8f2b3d5e734f148b8ac82e34faf10f6f, type: 3} + m_PrefabInstance: {fileID: 376583399062872287} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &4645049893751717234 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 4645049893997985649, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4645049893997985654, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 68a349b47a6a046dca292bfcb4c55e04, type: 3} +--- !u!1001 &4650180701402550638 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140564, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8189121912184140565, guid: d447397a85f134816a4e140126a20d53, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d447397a85f134816a4e140126a20d53, type: 3} +--- !u!1001 &4725579573848883103 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436842, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5736137878309436843, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 696e0fc47245a44cf884b05a3c944c58, type: 3} +--- !u!1001 &4823651067892853625 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 1031439694872860002, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} +--- !u!1001 &4831163592501774195 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 6075557822083909085, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6853184554364575591, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0c579d889e58e47da86813d32a4c40e9, type: 3} +--- !u!1001 &4927980506020453390 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 4927980506841691642, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4927980506841691643, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 42a4fcc7f1d6d4e75b8de80dea4f4aed, type: 3} +--- !u!1001 &5007359943989423975 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 5007359944963286296, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5007359944963286503, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0ea5a0991cb984858a93c6e72a48fb44, type: 3} +--- !u!1001 &5053151359479662269 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7208546910096496309, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8017031397509876751, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c8c7e58f88ab24ab68aaa74b1d6d43a6, type: 3} +--- !u!1001 &5114371790062042320 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8595733343516668930, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8935701602417438392, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 09de4e3fbf1eb4b0e8b3559fa3c6d840, type: 3} +--- !u!4 &5164843960469134334 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6776624547686148309, guid: 23a0b2b9a2b1445ae9c12389186140e0, type: 3} + m_PrefabInstance: {fileID: 1848268225340764971} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5174397002630556660 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 5174397003549508464, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalPosition.x + value: -1.1800001 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5174397003549508465, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 59d49ef1f8db54453bef34f910ccc11b, type: 3} +--- !u!1001 &5214431660118650585 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 4021987962619160476, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} +--- !u!1001 &5335596080296580291 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337976, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5335596081788337977, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 629d7d4ee03f94afc9b04b9e5ad8e5c4, type: 3} +--- !u!4 &5421250576438135003 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4885062888904817550, guid: 176ab3edf4916465280662cd5d5e19ac, type: 3} + m_PrefabInstance: {fileID: 646016397572797269} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5463142119359157681 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 3444761114837609934, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} +--- !u!1001 &5480018870556356285 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 5480018869358863936, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5480018869358863939, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 74786554fe4eb48608dc6702164ef7f1, type: 3} +--- !u!4 &5521806660576591386 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1031439694872860003, guid: ae925d36256c64bdeba743bf86eb56d0, type: 3} + m_PrefabInstance: {fileID: 4823651067892853625} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5532773247893834490 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2982036027512199786, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} +--- !u!1001 &5545962638641634238 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 5545962638129345844, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5545962638129345845, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 871712dc5a34d42eea6e70e4dace710c, type: 3} +--- !u!4 &5587153173439786007 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9184189684909511551, guid: b5e2ab2af4f734d8c91993201c86384a, type: 3} + m_PrefabInstance: {fileID: 3674169760956137320} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5587153173487966584 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 5587153173831525808, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5587153173831525809, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 8e7d06fe2a3894b9687581eb5100876f, type: 3} +--- !u!4 &5587153173556493101 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6847739379371683597, guid: 237575a45a2d1484bbac2bd0a23b3eea, type: 3} + m_PrefabInstance: {fileID: 1333488367121257504} + m_PrefabAsset: {fileID: 0} +--- !u!4 &5587153173691014069 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + m_PrefabInstance: {fileID: 7953986028193971354} + m_PrefabAsset: {fileID: 0} +--- !u!4 &5587153173826543639 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9191170955820942882, guid: 0d32797a420e7421e9515c607e0e706a, type: 3} + m_PrefabInstance: {fileID: 3604031424022767157} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5707939336191999240 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 5707939337200188440, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5707939337200188441, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d0ab76eb32b864bf28811ba8980624f0, type: 3} +--- !u!1001 &5713827380690521056 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 5713827381060766693, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5713827381060766694, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9648cdaf26a16447ebea51273ed98ce2, type: 3} +--- !u!4 &5722267907989336507 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + m_PrefabInstance: {fileID: 6416396198498491148} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &5935236480092310603 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8104143394324059481, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8880082337538494435, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1525131b6568f4bbd8d324ca64c577d4, type: 3} +--- !u!1001 &5984091603211228196 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 8983848761517252716, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8983848761517252717, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6f54223b10f5849eea02f9e6789d86b2, type: 3} +--- !u!4 &6089898044827184324 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4970581426453283007, guid: e2a7486442318456ca50c657deddaf2a, type: 3} + m_PrefabInstance: {fileID: 1186882641197149307} + m_PrefabAsset: {fileID: 0} +--- !u!4 &6089898045075167412 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6468326217425854576, guid: b65b0c54dd8374c62ac4b82ceee5e95c, type: 3} + m_PrefabInstance: {fileID: 956934025343056068} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6089898045078971936 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 6089898046636712355, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6089898046636712356, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 17a3fde0e2b394ae3966ed8d112d4da5, type: 3} +--- !u!4 &6089898045581147134 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + m_PrefabInstance: {fileID: 8767547842947356197} + m_PrefabAsset: {fileID: 0} +--- !u!4 &6089898046371248444 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + m_PrefabInstance: {fileID: 6784607632065465652} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6217799844588827403 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443482, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6217799843498443483, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4b8bd45421d324cdaa9f41c1624d0e2c, type: 3} +--- !u!4 &6245708479679953236 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + m_PrefabInstance: {fileID: 8603483318145835149} + m_PrefabAsset: {fileID: 0} +--- !u!4 &6257998923906726778 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5540656633665983879, guid: 10d0cae457da24187a2879deb7724aa6, type: 3} + m_PrefabInstance: {fileID: 1890593782293737213} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6262354314780803831 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401059, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6262354313410401060, guid: 0ccb700461dc849298367c685a77f91b, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0ccb700461dc849298367c685a77f91b, type: 3} +--- !u!1001 &6310596946077505750 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 3543585548616252138, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} +--- !u!1001 &6345091426335083659 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 129011628096403203, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} +--- !u!1001 &6416396198498491148 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1612862615845415607, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2101451135063257101, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e8e293ac8bea9492f99d018a316a7086, type: 3} +--- !u!1001 &6434598123497571366 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 6434598122492681033, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6434598122492681046, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 35f865ffdb9ea473dafe673fc144f8f1, type: 3} +--- !u!4 &6468326218189044623 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 129011628096403204, guid: 55dfe5c0e21ca47909242bfd633df7d5, type: 3} + m_PrefabInstance: {fileID: 6345091426335083659} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6571861312433222891 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1929547409} + m_Modifications: + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 453486526492264411, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d1914c47e52044eb6b65540cd4286672, type: 3} +--- !u!1001 &6611739941800456212 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761256, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6611739941427761263, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 44c09f9ecfee44e9ca79154ec69f154a, type: 3} +--- !u!1001 &6701766152712179831 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984099, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6701766152054984100, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f6355295c8c5e4da4ba6171e76b85a58, type: 3} +--- !u!1001 &6718796791332474472 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1665167904} + m_Modifications: + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5147416141897856783, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5486680781518450101, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 901241575cb5b4d4a8cc5b6fb2b54e59, type: 3} +--- !u!4 &6724083591722004299 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + m_PrefabInstance: {fileID: 8283939563736297735} + m_PrefabAsset: {fileID: 0} +--- !u!4 &6724083591797092709 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6245708478024997083, guid: c055fad2f147e452db926da380a999f9, type: 3} + m_PrefabInstance: {fileID: 863996940043053502} + m_PrefabAsset: {fileID: 0} +--- !u!4 &6724083592623878437 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4998655972760629057, guid: f7d2f45dcdf844c688b87dd34f539279, type: 3} + m_PrefabInstance: {fileID: 1733452070488956516} + m_PrefabAsset: {fileID: 0} +--- !u!4 &6724083592768765571 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9172931784141608891, guid: c3588d84549804500905d9b00d4d39c3, type: 3} + m_PrefabInstance: {fileID: 2457965655356680504} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6726605119706647813 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024276, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6494915168450024277, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d0cbb114d49c345e2babe4d630fd4d34, type: 3} +--- !u!4 &6735391201576989491 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 453486526492264408, guid: d1914c47e52044eb6b65540cd4286672, type: 3} + m_PrefabInstance: {fileID: 6571861312433222891} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6748271775828558008 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450904, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6748271777287450919, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9a9eafa92ee0f46f285a5f89bd668d05, type: 3} +--- !u!1001 &6773943097021471642 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535548, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6773943096089535551, guid: a564289202f304099a3e6949827bed2a, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a564289202f304099a3e6949827bed2a, type: 3} +--- !u!1001 &6784607632065465652 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164616, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 766859538852164623, guid: e81bad511e68c4f25a20af72828e036f, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e81bad511e68c4f25a20af72828e036f, type: 3} +--- !u!4 &6853184553745469273 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + m_PrefabInstance: {fileID: 8497583004043249453} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &6871534734043321247 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 3817831813196610124, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} +--- !u!1001 &6891775664668218545 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6132205793335311414, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6796538774494357132, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0ac448db0cea84f4897afcd90d2fb997, type: 3} +--- !u!1001 &7036811822999308784 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 683765959} + m_Modifications: + - target: {fileID: 7036811823842775527, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7036811823842775528, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c929ce33847fb49db924f0143cbcfed2, type: 3} +--- !u!1001 &7076226836586481801 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 609278500} + m_Modifications: + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8381696787620407711, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9158655320985563941, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b668065cdb3474cc7b77ca4ec18d455e, type: 3} +--- !u!1001 &7084408497693108164 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924240, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7084408496934924247, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: ab4dfe4239a1c41d788e5f790183ab2c, type: 3} +--- !u!1001 &7155921545798149304 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8443399086351922728, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9108295051740277906, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7553446adc3c74ffc8c0cd2d40f72182, type: 3} +--- !u!1001 &7165069134915616193 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 8247812095346404020, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8736365121782853646, guid: 22739474cc0304062b86663f61c7be1e, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 22739474cc0304062b86663f61c7be1e, type: 3} +--- !u!1001 &7171129368698226128 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 7171129368900522439, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7171129368900522440, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9109c016aac8d43e5ad707b7387f7a14, type: 3} +--- !u!1001 &7180330517332316266 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 7180330517024763961, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7180330517024763966, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b5e14d27f1ee44c4ca7d9f7ddf597a28, type: 3} +--- !u!4 &7214420443868432770 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7757223452044476651, guid: 49f55b94843c84fdcaa685a2877a2e0d, type: 3} + m_PrefabInstance: {fileID: 1133205658148587881} + m_PrefabAsset: {fileID: 0} +--- !u!4 &7214420444187326590 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3444761114837609935, guid: 3052f592848ca46489fd1dd04b1f95e2, type: 3} + m_PrefabInstance: {fileID: 5463142119359157681} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7214420444538775843 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 537802041} + m_Modifications: + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7214420445372436001, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 0287fa814ab9d4d74a2bd4d32bc3e1bd, type: 3} +--- !u!4 &7214420444887263622 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4963509568761106185, guid: 4eb0d23576deb433383c6c9c7a433b50, type: 3} + m_PrefabInstance: {fileID: 2377663711789721231} + m_PrefabAsset: {fileID: 0} +--- !u!4 &7214420444904760451 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5521806659532223486, guid: 4390d6bba874b4870bc50372b69a965b, type: 3} + m_PrefabInstance: {fileID: 2936242286227412861} + m_PrefabAsset: {fileID: 0} +--- !u!4 &7403607952414204477 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3543585548616252139, guid: 3ade66a8ebc1747beb5cea86864dd20d, type: 3} + m_PrefabInstance: {fileID: 6310596946077505750} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7518656561460206982 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 287675812941503674, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} +--- !u!1001 &7623227053691991716 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 7197892305643561370, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7543490097897192224, guid: 1490bd507b9794d9988510e97caf7484, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1490bd507b9794d9988510e97caf7484, type: 3} +--- !u!1001 &7708584024014721366 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585032, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7708584023377585035, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: d0ad5578a98d94b5fbbb1b738d069fc8, type: 3} +--- !u!4 &7718459195245454131 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7022209968181172683, guid: 1e1a6e53c2ffd4c8c963f564019e6eca, type: 3} + m_PrefabInstance: {fileID: 751713545734241016} + m_PrefabAsset: {fileID: 0} +--- !u!4 &7757223452501469650 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 3817831813196610125, guid: 9c6c4bdf421d74741a9445abf950ba55, type: 3} + m_PrefabInstance: {fileID: 6871534734043321247} + m_PrefabAsset: {fileID: 0} +--- !u!4 &7757914275500736829 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 287675812941503675, guid: 7a7555d00bd8e4befb242859f9ffed35, type: 3} + m_PrefabInstance: {fileID: 7518656561460206982} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7763973619085354454 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530540, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7763973620608530543, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: a580b04ea358b4d3fbe8d21fd10d6750, type: 3} +--- !u!4 &7855782071179066511 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + m_PrefabInstance: {fileID: 7877784939517904685} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &7857832937168584598 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 7857832935603774970, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7857832935603774971, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 7d374c565c9a04a30913ec6654008d5d, type: 3} +--- !u!1001 &7877784939517904685 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 24448216592399266, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 800808586372571416, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1193e5d61afd2411a820b274a0bd2088, type: 3} +--- !u!1001 &7878058747991266876 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalPosition.x + value: -1.18 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311042, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5224975315109311043, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 4ba08c323b78a4a319324bb7b80d4b75, type: 3} +--- !u!1001 &7953986028193971354 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 2588358205820593966, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2588358205820593967, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: da34c89f95a114aad9b2fa94607d0607, type: 3} +--- !u!4 &7989907660336482858 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 2461640900082155728, guid: 3b68fb8ef3f964af897a2bbcc850111b, type: 3} + m_PrefabInstance: {fileID: 5532773247893834490} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8029828359957307827 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404564, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8029828358692404565, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 830a1f276caa94ac391a838c76e683d1, type: 3} +--- !u!1001 &8036534321618783563 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1919807586} + m_Modifications: + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_RootOrder + value: 10 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalPosition.x + value: -1.1800001 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777254, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8036534321227777255, guid: 108072730e71241d1b0e56d216e5457a, type: 3} + propertyPath: m_Name + value: SocketCase03Rotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 108072730e71241d1b0e56d216e5457a, type: 3} +--- !u!4 &8104143394610879232 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6066728243518123217, guid: f37ffb2dcf27443b887ae2f541c9146b, type: 3} + m_PrefabInstance: {fileID: 2614034242034087889} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8148562682098684600 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 7371979726020755910, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7855782071127055228, guid: 30a40009b4bc343918b441778fa7a574, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 30a40009b4bc343918b441778fa7a574, type: 3} +--- !u!1001 &8215230692579710179 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 8215230692185645792, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8215230692185645799, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c3e0b7de7d7644e46a6adfc4a505ab6c, type: 3} +--- !u!1001 &8220994844876546804 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 8220994845977931984, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8220994845977931985, guid: 43220db99dd034a37a1edd16065de56f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 43220db99dd034a37a1edd16065de56f, type: 3} +--- !u!4 &8250594198580400741 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4894564187005480676, guid: f11352fae5b054d7d9a5387ee288342e, type: 3} + m_PrefabInstance: {fileID: 3572202811423194241} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8283939563736297735 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612492, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3433653052191612493, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 20e58a8555fcf49929e4175f3f59c435, type: 3} +--- !u!1001 &8284395125995177665 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 987653509216972877, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} +--- !u!1001 &8287602942045447426 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 653425212} + m_Modifications: + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 871849541932749338, guid: baead30beeac5484582fde0d7bc25706, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: baead30beeac5484582fde0d7bc25706, type: 3} +--- !u!1001 &8368001429052097464 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 8368001429655474557, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8368001429655474558, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: fc1a9a02423474f2f8fc5c3e6db4feba, type: 3} +--- !u!1001 &8378082133953054810 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764228, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8378082133695764231, guid: c19f1f464230746ae9a57964c418391f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c19f1f464230746ae9a57964c418391f, type: 3} +--- !u!4 &8381696786776239522 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 527693179438057632, guid: baead30beeac5484582fde0d7bc25706, type: 3} + m_PrefabInstance: {fileID: 8287602942045447426} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8426623606353766648 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6257998922809753729, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6742786332020054587, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5b0cba41173b8401b9ff6bdc04ad6e9f, type: 3} +--- !u!4 &8443399085079617453 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 7137219510181502803, guid: 206b80d1cdeac4395b6d7897341a7658, type: 3} + m_PrefabInstance: {fileID: 1594421533648634110} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8449845442284574165 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611672, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8449845443574611673, guid: 21e98050880784f039f030a1702cf93d, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 21e98050880784f039f030a1702cf93d, type: 3} +--- !u!1001 &8497583004043249453 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1031660687} + m_Modifications: + - target: {fileID: 2431324904560530126, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3095694448220457076, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c0db5ed7fb5344be482884bd70b9f7bc, type: 3} +--- !u!1001 &8504903453663644379 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 8504903454298278980, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8504903454298279035, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 72b516d6d67164d38918c1fd85275b7b, type: 3} +--- !u!1001 &8603483318145835149 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 497408920} + m_Modifications: + - target: {fileID: 2434337142544210392, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_Name + value: SocketCaseRotate + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_RootOrder + value: 9 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalPosition.x + value: -0.99 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalPosition.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2434337142544210393, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: fafd9d0939c9b482385868f53cfdf897, type: 3} +--- !u!1001 &8672476020497671477 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_RootOrder + value: 3 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalPosition.x + value: -0.3 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131284, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8672476019876131285, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} + propertyPath: m_Name + value: Socket02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: b4cfb28c2a56d40eeb05bf75440332a3, type: 3} +--- !u!1001 &8727327063187273386 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 2003410174} + m_Modifications: + - target: {fileID: 8727327061103809065, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8727327061103809070, guid: f68af86cffa3b433498922c37059f3c8, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: f68af86cffa3b433498922c37059f3c8, type: 3} +--- !u!4 &8736365120847517365 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 9122718336007702890, guid: ae52d00c6ce144e889ce7d5c7bad77af, type: 3} + m_PrefabInstance: {fileID: 551596620824977375} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8767547842947356197 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850267, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3255887362242850268, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 5055f9fd04c5544c6bd69cb8286efc4b, type: 3} +--- !u!1001 &8795951070436633713 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1266160634} + m_Modifications: + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_RootOrder + value: 8 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalPosition.x + value: -0.83 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597308, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5421250576049597309, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} + propertyPath: m_Name + value: LightSwitches03 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 6edf9af2949a042cc8fdd4500053d716, type: 3} +--- !u!4 &8849987496042047777 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 6724083591365172426, guid: 1052b8f4b28044c2b81ec415878aa62f, type: 3} + m_PrefabInstance: {fileID: 2846775085646657003} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &8932091428317664228 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 8932091428132076378, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_Name + value: SocketCase03 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_RootOrder + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalPosition.x + value: -0.2 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8932091428132076379, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 04c62d84cc4a146cf9eedaabf825fbf3, type: 3} +--- !u!1001 &8957799065557132895 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 507195881} + m_Modifications: + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_RootOrder + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalPosition.x + value: -0.1 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403172, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8957799065028403173, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} + propertyPath: m_Name + value: SocketCase02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 1573f09e479a34331ab82bd07a41866b, type: 3} +--- !u!1001 &9023376837468690098 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1764922158} + m_Modifications: + - target: {fileID: 9023376836385957844, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_Name + value: SocketCase01 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_RootOrder + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9023376836385957845, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: c9e24b7584c4d4fd89d3aa2925e3c119, type: 3} +--- !u!1001 &9035404246923875575 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1747384901} + m_Modifications: + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284583, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9035404246257284600, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: fd6f7b084f2d24023ae9fd83cea69344, type: 3} +--- !u!1001 &9043073840796936330 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1154586155} + m_Modifications: + - target: {fileID: 6941921773922028805, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_Name + value: LightSwitches01 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_RootOrder + value: 6 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalPosition.x + value: -0.6 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7718459194602182591, guid: e57c27531019a4262a339acb5999eb49, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: e57c27531019a4262a339acb5999eb49, type: 3} +--- !u!1001 &9089088531419522762 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1246538448} + m_Modifications: + - target: {fileID: 9089088529316069177, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_Name + value: SocketLightSwitches + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_RootOrder + value: 5 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalPosition.x + value: -0.5 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalRotation.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalRotation.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9089088529316069182, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: fb07ff8859fae4e46b66247f75e5b351, type: 3} +--- !u!1001 &9098628202384409056 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1192885625} + m_Modifications: + - target: {fileID: 9098628202231130212, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_Name + value: Socket03 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_RootOrder + value: 4 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalPosition.x + value: -0.4 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalRotation.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9098628202231130213, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: dbe2e7b57256e4c6d8551841f1a08086, type: 3} +--- !u!4 &9172931782920648333 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 987653509216972876, guid: 75222156f2ed34c319d9260adb21d3f1, type: 3} + m_PrefabInstance: {fileID: 8284395125995177665} + m_PrefabAsset: {fileID: 0} +--- !u!4 &9184189684966903935 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 5882914058063507743, guid: 048eca848d7d14f3fb326332fb056918, type: 3} + m_PrefabInstance: {fileID: 3373342293557027168} + m_PrefabAsset: {fileID: 0} +--- !u!4 &9191170956232739140 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 4021987962619160477, guid: e91227f36ad534a7f8af19c6e3517ee9, type: 3} + m_PrefabInstance: {fileID: 5214431660118650585} + m_PrefabAsset: {fileID: 0} +--- !u!1001 &9197150916567541618 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + m_TransformParent: {fileID: 1167250745} + m_Modifications: + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_RootOrder + value: 7 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalPosition.x + value: -0.7 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalRotation.w + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalRotation.y + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194690, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9197150917554194717, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} + propertyPath: m_Name + value: LightSwitches02 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 10167dad683b6485d936cbac0d9b7ae8, type: 3} diff --git a/Assets/SocketsAndSwitches/Scene/Demo.unity.meta b/Assets/SocketsAndSwitches/Scene/Demo.unity.meta new file mode 100644 index 00000000..fa6443a7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Scene/Demo.unity.meta @@ -0,0 +1,14 @@ +fileFormatVersion: 2 +guid: 5148f8c9ec3184f6786fbb577f139016 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Scene/Demo.unity + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures.meta b/Assets/SocketsAndSwitches/Textures.meta new file mode 100644 index 00000000..d4289a7a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4861560a20844022a606e95580b6674 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024.meta b/Assets/SocketsAndSwitches/Textures/1024.meta new file mode 100644 index 00000000..244941ae --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e403ee04ef5d94111bb9084373407015 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black.meta b/Assets/SocketsAndSwitches/Textures/1024/Black.meta new file mode 100644 index 00000000..e31ea0ed --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6917a3b6b520d444892c164f819b649e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..1976a96d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..73f92ec3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 02eeeb3bf59b3473fa57750734de3568 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..2bc3ac5c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..7d52c885 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2cfab068a93f541aaa0b2d9aaad3b0ec +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_Normal.png new file mode 100644 index 00000000..6f935d4f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..0a02c506 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1a7eee44c8adf42bebf55bfae54bbcaa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..faebfb23 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..54bb5cbb --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6849b1431589b4da2b9615114deb3290 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..6532d450 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..56eadb64 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e97c664a146ac4fcb92cbc3e288df332 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_Normal.png new file mode 100644 index 00000000..4996f441 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..04616d43 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1e72afbdee1b1499c880bd9d9b732e1e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..9361b293 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..3d8c65f1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1ed85fe98e3d34ae4a2e2fec72726dab +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..08acbb1a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..776e4ac3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2dadc10417ec04fbba99b822edd553d1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_Normal.png new file mode 100644 index 00000000..fe159bf4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..78ede104 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c7e3fac474012448897155ed03e7be45 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..df4f7c97 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..92e1eee7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: daf6e6afb527d4c34b746b67e53c1cca +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..ce85263f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..e396f59f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7f80bc93df3504db2aa781629f3c26e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..ac753e55 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..97f1f712 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 466b64951021d49a6a55aa22dbfc2098 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..ea1aa389 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..707e2f54 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 98bf978bfa3c24fd8a93a73d27599224 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..34edc46a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..806e39f9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 87cddb3857a6542199d59f49b8493f58 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..c39111e9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..f52a8b4e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: db13a600410584b3da4744e1905badb8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt.meta new file mode 100644 index 00000000..42ae0107 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 504207efb5adc438895daa2bc17851d7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..851763c8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..c07af2d8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fe85090e747574659b96086925059c69 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..59caef40 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..61ec6955 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6dcaad354c06f4b9ebff0defcbf99651 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..60fa0e84 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..63f71d81 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 41a2eb46b21654993960b61bd1dd1369 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..938d83e4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..d0d21285 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: becd314702d9a4867be51951e5eef9be +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..1339f167 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..f3746c1e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a5a1aeaeba6324a7687f0e9b55fecd91 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..5dccc5fa Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..bacd5b37 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 96b6ef2d73c084113adcdf9b52df392f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..20361f05 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..852d9632 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 402bd2c6cff564671933bd0725b8b5b5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..55843edb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..f18cdbd6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 46c3d82ae403b4f029dcc9d39d7663ee +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..00a38f2c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..4ead7d44 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 231243fb6a90c488ca8bce1a39d14a1f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..db74112d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..284bf67e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7c257272f94954c08990ee74f89c9923 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..4d8c23f6 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a061f79f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c5286ed387bfe43a7825b956b59b140a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..cd121953 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..aae55683 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 88a72dcd86a744ad9986b08a9a06bff6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..8965259a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..07e22f0d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 29fd8810d51674faf9d1982cadea4759 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..71ceb9d2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..3e8f913f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 09f1f79d5a5a44c8fb93ec19241c2320 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..923227d4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..394da034 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 033122ab38de440468661ddcef300f76 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation.meta new file mode 100644 index 00000000..046ec58e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17f4e42ba849f4e5dbee282f9f2cd983 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black.meta new file mode 100644 index 00000000..124a04f0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73a1eec31a7404121b9bda875a83adf2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..24ff19ae Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..23298abb --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e813a95f9a0574d37b360eaf2110f910 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..a2d9fb28 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..2e7d44f6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0e9a3bbfbf9064bf69436f2a976e71dd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..8e1931f3 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..667fccc5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f054cbc290d06412c83c4fd4ea9e7e72 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..f0b1c324 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..e888fd7b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a18295abc9bde4e9e99fa0713d12d46b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..9ebb4eb5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b5f0a25a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 012a7e0685c3d46ccbcccb5cca04ae7e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..6bfacfc2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..baf2e864 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a87ab972b93ce4f9b96fa5e4ec803e18 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt.meta new file mode 100644 index 00000000..cc80f9ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aa0642d37c5bb4d7ab1133c84b259639 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..8668d530 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..e61235bb --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6ee475d7a6ce74546918d7e6b9bb2370 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..fb71a27e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..d43694aa --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7bdbbf7e7de72482ca2b9ff3f6c75562 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..539db9ac Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..f27c547d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 10313903e69594f47946ffe8de98f10b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..5ac45fb6 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..7b73a597 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0f86f733cb32f49aa821415f3a17a463 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..7cfa8e50 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a9f6646a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: dc70da2cc39cf4a65a204242b51fcf5f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..c622e276 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..5ccf40ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 70ff82b2d656c45619d1ac5abe27e5ce +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White.meta new file mode 100644 index 00000000..65538ff6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f390a0c6c17e845448aa11f7e4e6bb99 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..5e860c37 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..a0fe9735 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fa33059d3112541b3b388260698b0ab6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..b32fc9d9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b4c4fa6d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 43fd1045b6256494dbc3bb3503b9375a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..8e1931f3 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..07c5e088 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 99998c4a1fc7a4e0197c0400df05b595 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..fa5167af Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..7f6ad588 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 34b082a0e9a2f47859115f79639c2c44 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..8fc442b7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..1ff7e6a2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4512ebe2156034f99b557ab6382bdd7b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..6bfacfc2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..134104a1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9ef8390cc8b4c4735a887f42e7ad050b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt.meta new file mode 100644 index 00000000..5dde7c1a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8b19051c7d3bc43089cb62b85028a541 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..4fd910e4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..f63e59f0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1c3a88d41537e425ca87387168cda40e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..e7a8a404 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..9c4f5514 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c41d8072c12784e679623d60d63b4c2d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..539db9ac Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..b224a5d5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2df799c82d6b445f388ed4d93622850f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..91ab5e99 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..1a383a63 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4e09afb38ee44471690663be45b3a4d0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..332135b3 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..ebf61cec --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 11a82cf4d3983414682200eafedccf84 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..c622e276 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..8dd3ea42 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7654662248f7747de92160a56b0d2fcd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/Rotation/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White.meta b/Assets/SocketsAndSwitches/Textures/1024/White.meta new file mode 100644 index 00000000..f618e6c6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ad79b43a9b5ed463f96e5295c5c7f9af +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..d9067c4d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..bfc0b9d0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ce9b532319f7f44fc8c0a7af306aa5f3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..b6aecd16 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..7496b1fc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 59058986dee2140ffafe46cdd767f240 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_Normal.png new file mode 100644 index 00000000..6f935d4f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..bef9f9c5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1b3d3e3f24a9e42e38cfb2be0cadc14f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..4244f244 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..8427a67e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 14dd5bad78bfe46e687a60c68bd84e6b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..37bb5ee9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b53f3b62 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6ec56feaa67934149bcb641632c7659c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_Normal.png new file mode 100644 index 00000000..4996f441 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..a59029c0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 51de1bcbda47040e2aa4b012a3d07207 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..abe00d83 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..ea060dc1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8a49e4b25d5334dfd84e68bb455cd3b7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..18b58b25 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..30d7c809 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5e258e5354dbf4d5687cc8efc1f6ae3f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_Normal.png new file mode 100644 index 00000000..fe159bf4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..e7e5d8e8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0ebf5063a40a54dc49bf75e60d07d429 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..d3074080 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..0c9eb497 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1e12061e151504f1685eb9d63ce9e94b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..6e9d23e1 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..58e5c7f1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7356794344a7347c38751f1334da67bf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..ac753e55 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..7befa862 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9c01888b23c624503a091fea74bf7639 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..d1640525 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..a8d3aa79 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a363a9e018c714dd0a516cea35e05574 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..136b60f2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..3c992b99 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 36693a8d543f14500909ec4eb4fa5135 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..c39111e9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..e7976eec --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7101b893aa0d344919b5ff9d682e3ab5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt.meta new file mode 100644 index 00000000..f408d37b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e1c283dc6dc945c3bcce487edbd2732 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..d9fc0056 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..e18d4e85 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f3aa8b59fdc08449c9a23c339980598a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..d604bf1b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..8d0a3e0a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 266fd4fee50734f78a3998a52c973065 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..60fa0e84 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..e5e5a3fb --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bdf705f82627e417495f13aa7ef58856 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..8b7581a4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..9fe41729 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 88c1b4e8be19d488a8729d87ca5c5b26 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..d5dc9970 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..13f19f11 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e0c1d5ba9829542c6bfb047b7297e685 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..5dccc5fa Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..648dee40 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 87ae077f3fc4f4a8d8cea097bdcf07d6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..5436b24d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..993848ff --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 54a1c3d3430a542fbafc515704ed1c65 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..8f7e6ba4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b6eaa13c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c2846c70797304cee943f8e0db31c401 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..00a38f2c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..ecb4f9b0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9e74da7e2598744f8a75b3b7c8e8006f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..f19eef11 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..9875eb87 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a3dee028a60ea42af846112ff9be7a24 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..5326f481 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..35e04c66 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3748ac8e9ad3e4bf5a21bf50cead93f0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..cd121953 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..eaaaacc6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1f028d047b5e043b785eba045941b590 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..1a87da3b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..9c2ee480 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d7ba6baa0bcc34f02896f465a51e3c5a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..99fb0242 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..299baa17 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7d1c1967bbd274ea38ff17cc275c7f4f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..923227d4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..54e30813 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 52f081d487f5941ef81a3cab4b028409 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 1024 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/1024/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128.meta b/Assets/SocketsAndSwitches/Textures/128.meta new file mode 100644 index 00000000..de99e9b4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65c979849a5da4eaf84ae9b636c14f17 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/128/Black.meta b/Assets/SocketsAndSwitches/Textures/128/Black.meta new file mode 100644 index 00000000..b8d06a58 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a3e54223c951a491093215edc65b9bd7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..6fe1bf38 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..d95d7207 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3f2ed5d01143b421bbe0cd19b48b50b2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..db35b035 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..4fde454c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c561e7f73d3ed4ca889f8be8a7d582b2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_Normal.png new file mode 100644 index 00000000..6338e1d5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..07ae28bc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f01bd95160a274c79a4dbc6c4629c44e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..b48080c4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..0712a68f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d40f1532afe9d4039b2e4f88be2d6c37 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..323ee0a0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..364830a8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: def3013c278704073ad62844a23993ff +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_Normal.png new file mode 100644 index 00000000..db339d78 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..4f1e70ef --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1660969d3fa464c12bd68ea7b3435cf9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..a90746b6 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..603f855d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1ac30fa430b5947e3b4d0481d5c76606 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..30f5c548 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..f2691eb6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b3b6ca02ea224409eaa215b776284bb8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_Normal.png new file mode 100644 index 00000000..b939d166 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..7b130de5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3461eddbac2924befa1542deefc04a75 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..8f2c49b0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..ede0d023 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bd5859b61627b4695a88a428e8aaafeb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..018838b1 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b695601b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bf8e094cc2dae437aa7a7970cb8a5d9c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..1bca27ee Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..d8c8b272 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f780716734b2d4b34a7820b0b50f10f7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..98e0fec2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..310b4a15 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b1a461fd82de44488aef5d0f44ded9c9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..5023ed89 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..159b9cd7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4381701cad06542bebfaac41b7748057 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..b6e4549c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..28ac4744 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 39464ec2f1d31411ca1f2eaa48cc775f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt.meta new file mode 100644 index 00000000..10a446f7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0499dd91f7d84498a883de40baf5dfb8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..fae7946f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..38f02497 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 98cf075c74fe741ada5645c8bb74caa3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..a4f80984 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..4e4dfbb7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0e344cb345a184d49a98aa74f934a60e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..6338e1d5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..b78ccc60 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2d21856b314344be9a54598625fb7fc3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..231f4429 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..6db971b0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e88aba5b48a9841dcb1edc930b04f5a7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..3d582bc6 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..8aae3662 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e5b3c42a7e793443c9dbdb0854201686 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..30d76b0e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..1a7fae43 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 40571c88ba5ea42fb9b2c4c59193178c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..f460bc63 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..802235af --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c5b1e48ca70384786b0120669fa11327 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..a33c5f8f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..ae6469a5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6c5eaf0f01a43493abf4e2fdb23f156f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..1840daeb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..e001e6b3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c545c976a58dc4f8986449b906a804b4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..bde41929 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..20bbeff2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e9133b5b81a784e4da57ee72d2d2877c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..e20781e7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..10936c52 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5f0f8cbdfcea941979f8dfd2396fcfda +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..18f788de Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..bb34ec7f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b9f7efe761ddc4f62810692369fb2e58 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..32aded33 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..bbff699d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d4cb422e9358f4a37ba5b8258efd7518 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..2c2c6e8a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..ab562e02 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7b03c60ac587e46bfb2e56bd1e1ad597 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..09aad6f9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..98c55d09 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2aa93fe464e1949a09bb987fe53a755b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White.meta b/Assets/SocketsAndSwitches/Textures/128/White.meta new file mode 100644 index 00000000..5e4e8724 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5abcacfc78f0349fcafd55e9adb3132d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..6ca4f1e9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..4aafa13e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 07c136f62132f428aa8b7d11e5c544a0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..c668dcfa Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..bd4baac3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 35f0490c4c8dc41eb98378a312ff4a84 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_Normal.png new file mode 100644 index 00000000..6338e1d5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..4c72b915 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8a56349332aa0489e9acfa868c2ed209 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..efb0ec74 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..e2674879 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 46b235f678a5a4ccd80790631a992035 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..f6a80566 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..503e3d1f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 54fd0ba61834a4b18bc2e08ed06d6d6c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_Normal.png new file mode 100644 index 00000000..db339d78 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..ed37e8ad --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bfd2ac20513e3446da9a689315132ea9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..b24aae43 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..41c991ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ecda629f5d5384ad5813b58644388409 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..71bcb6fd Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..10e2a994 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fabdebc3f074a4c01a2d0d824322043f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_Normal.png new file mode 100644 index 00000000..b939d166 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..18d53823 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 23f1a97b790eb4c44a4c5a8d39a6c782 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..918debaa Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..cbbe4990 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ca6a1ef9d68b7439c8a8481ca837d31a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..46f195d6 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..24881376 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0f99c6a9952514f69bf7169b8e94bb06 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..1bca27ee Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..af3a370c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b68b59bdf66604b25838e9bce39cb1bd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..373e7aa8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..b66622c9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f7dadccf7d8df495cbd49fd1397fbea2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..e5ad4a68 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..2b83d3df --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 401679a11dc5149e4b1db645316a7b0f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..b6e4549c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..fe3fea1c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6487f25769cf94938badb5717647d6a8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt.meta new file mode 100644 index 00000000..054349be --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9f0e91b9c7b74013b39b63a550b8a8a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..d7331d13 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..c8a38df4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6f9163b5254974765bcb4caba6df1a0e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..5e833c44 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..e73a7a08 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4add4be9137c2467bb447ea737f37d6a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..6338e1d5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..ae24a035 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2709aea2f6e30425dabe1463ea06db7d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..a76f82f5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..263a5e69 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 550661276392d4e74857dd70ccba3815 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..ba7d2bcb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..902ea4b8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fd3422c7d866a476b820c33bb0bc06da +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..30d76b0e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..e449ae98 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 008b967307ab6458791ba32077ab7111 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..a2eac3e8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..3e37b2b6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b78248aeb6fec4e77b9feea9fbc36c53 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..ce34fa2c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..4d87e3e6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a8ae3f6b9421d468da9f3e3a58d7abeb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..1840daeb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..f18b9db4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2dc27bfb959f64342b72408adcd20c4d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..6c8f8d7f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..16eac14d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e7be49156aa044ae6a155740317905da +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..54fce329 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..6a70ccd7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ce05e02e08ef94f989ec1bb7a1c1b266 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..18f788de Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..94644c4b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3b80bd1ed92124ababf9930d9f6df4ce +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..d233c980 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..2f463a50 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cd09256f225c44bfcb539d1b126577da +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..ed911208 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..15898db8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 44113c898317443a883dd5bdb3733971 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..09aad6f9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..9add08f0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0fc7453f59cd346378d08864815307f7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/128/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048.meta b/Assets/SocketsAndSwitches/Textures/2048.meta new file mode 100644 index 00000000..547d5a65 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4ff5640f47e11429b89d652e0ff915f1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black.meta b/Assets/SocketsAndSwitches/Textures/2048/Black.meta new file mode 100644 index 00000000..07fa380d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2c9a17839d81b440ca2f42ab7b2d781a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..a9ee61a5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..38581e0f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3a6e032a0484349f6b8007be01d62bc4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..1fc17b80 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..0143972e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7f64a2d6be98b4d559edfe48a24fd230 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_Normal.png new file mode 100644 index 00000000..5fdbb5ed Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..42e09223 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1c889e66bf8594295a64737c4bd34a2e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..04e4d741 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..858c7235 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 720afb6f784a349cba00fd407ed6d1fb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..4af15434 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..6b39d1d3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3445f2d69798b4ca1b6da63112d190ff +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_Normal.png new file mode 100644 index 00000000..3d723a3a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..aa94a5a9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 42c3d9f46c4f64604881c8c632c96130 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..b8f072a7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..0a9329be --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: dbf35c59e476c46f7962c029f4fc9ace +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..8ee47b24 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..301899ff --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: dc30d3622266f47169ed707388212b5a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_Normal.png new file mode 100644 index 00000000..a9699324 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..5b5b88ad --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f11dc593c01d8448298d4a4a2c485220 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..58f9ac7a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..0ea98c54 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ea148c90dc03a42e3a6eb57327cf822d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..d59e8346 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..2cf932b3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f889ef49376e24f5db394e30b2598223 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..9852c160 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..f363f9b7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9a474797d6ead4a3faaf4f67dbb494dc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..60162723 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..9032e5ec --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4d4d44f37ce1d4de58970966745ffbcd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..29184a1d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..290cc5ba --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f984d24e1047847e2a75d87c501c4097 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..71e4936c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..7af61b2c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fc7ad94062b37442892459e7d2a270e8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt.meta new file mode 100644 index 00000000..bc664c17 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 13d559bfee1b042dc8c606f3f7d0170f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..206b8506 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..d986a0b2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ff0b85be8cbf8440cb922103f241b683 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..a27dea64 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..faad821f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 489c85dcfcfd5428fa64ec219826d618 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..a540a51c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..594daf63 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 788531870f07d495db7bc7610a4e4db7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..fc5f4e95 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..fc630e98 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2af9f38df741b4e10bde772f726ad6d3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..7d72437c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..1b85b62d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5767a8dbbf9b446c7a77f4d5f9ad737c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..438277df Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..61719ca4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: da77742d3a8204f38a6e1786f2bc8035 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..a04c045f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..b2be81fa --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ea4aa92c1270e402b8db38ef0d8dd07b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..962ac2a4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..13e4266e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2b78e4c45554b43e5802c87cd5546305 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..bd21c930 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..27f385a9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6cbab4d22e498435e96b9668536c5fc7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..3076133d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..1c894c81 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 47463cdacadcc4f49b8ceacaea555087 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..3f3334f0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..4b08f724 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ecd22c595bf304a5ba07010aad93ccf4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..84815eb7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..f35bf564 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7f80b602ec69c466fb34c2bd84d88515 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..6cd37511 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..53e02467 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 17a5233a631fa4c69a0d85b1038b7683 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..8ebe762f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..20d46ad7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7a93a52333f434c37a45b6ac92a0d86a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..3ed7ac6c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..1ae8fabf --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 18f4c1fbbb7b64d0cafd5e91319a2073 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation.meta new file mode 100644 index 00000000..b94fca67 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f90ddae277e3f4b3ca07f06de182fd1f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black.meta new file mode 100644 index 00000000..4fa4bdea --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b9fd6414e416a449a81abbf8855804d8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..ce5b6af0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..cde9db2f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e28b714c970714ddabdf8d6c92a10f96 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..326531f7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..fea0e70d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d09108efd923e491bac5cf60d84c18df +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..fd918ef0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..25d7c155 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d16884ad903544d5185101d8de663ed5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..74326f3d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..08897038 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5178d63d70c1941109293ba5222fd9fe +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..8cf961c1 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..ed29ea36 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 351c61257389a47fdb210008469304c3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..ad053b72 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..11253689 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d7750dd1b01fd47608317774e72be2bd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt.meta new file mode 100644 index 00000000..975ade9a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ffbf5ef0c75254d1e8c04275f6c3210f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..601327ca Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..b12a486c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 699f8471527f943c79a4fa3f37a2c73c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..8f234d7d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..cc26f1cd --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0789c4f4cccf7404ca125cab36fd8ec5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..6e772c09 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..d9ec0b5d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 547d958ac07ac4ddd91109d23893ec21 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..6061adfc Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..c23e41b9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bfb151c40bb51468f9e1b6b1ec715bf3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..7f2dbb30 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b7a22eb0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5641ddd56bffc44769d006e26b323f6c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..738648ea Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..4981bb7f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cae85215ca9854d268347cfc19b1ab9a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White.meta new file mode 100644 index 00000000..10caf695 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a8e1e8115d920418fb4e2ba2f96b2253 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..0dc0e5c7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..ac2ef0c9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1955d6f6e33f74fe6b716058e69b2a0f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..ab7d9a0e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..af7aca53 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 02c0c0020aad54f31b57b203219ce9ab +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..fd918ef0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..298d1433 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 792806bb76f7b405bbdb8200c54e58e8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..4c6c2c84 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..2cff39c6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e00fe2d532fdf4b9798343323e3295c3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..c8c47f92 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..50c93626 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f3a677f80e0bc4aca8a87271105c4a52 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..ad053b72 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..64c8c81d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5640fcb8210f14bf0a31bfcc561c2c1f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt.meta new file mode 100644 index 00000000..b49739ce --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 07a9fd8b15dd74988a422cc477820dad +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..fb851fa6 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..f77075fc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 59162758f13ae4748bb006804692723f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..279c7a40 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a4a2869c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cf12eb9c465de4e4786561a7f7f906cf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..6e772c09 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..c564893f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f59295ba6e3d64cbe8d62a5570e7e745 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..a323783e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..ee0466ae --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 58de0c6732ce64f7889097b879550d36 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..fc4fe812 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..fbb82c43 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c87129f2bb9d84eefa2bcd84297cde65 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..738648ea Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..b7893db5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 87859d73db41b4a62a3e454ef71b7924 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/Rotation/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White.meta b/Assets/SocketsAndSwitches/Textures/2048/White.meta new file mode 100644 index 00000000..15d383a0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 067c414e2481e41f382e736b221b2f52 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..e368da5d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..a46cad2a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e0065890ec2bd4946a2ba8f77e334ef3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..7cca8ee5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..5507f269 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b96458521f5744ed08b707eae78567ea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_Normal.png new file mode 100644 index 00000000..5fdbb5ed Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..711a1ff6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ebac8944832084690b08f53c7cfe4b21 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..87cd0994 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..31d0b031 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 48143626b277843b98d67036d8b4679f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..0409df42 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..941d17e5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7526f9bfcc69d474cb33e6c277620f2d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_Normal.png new file mode 100644 index 00000000..d2aa42e8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..cb0589de --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: de66bde9d4cd24e7bbb1d5936a6e7774 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..9581e4b3 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..8d267436 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2375be287a838410da24ec6341d48477 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..e0fdd5d0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..ea0a9a2a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8915092191fbb4f5fadbff2cecb60475 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_Normal.png new file mode 100644 index 00000000..a9699324 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..13f93c24 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d7412a530071747f28be96b69063b1ea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..5e4f99eb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..1686bdf7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a59eb574800d64fdd98013accc90bd44 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..6220d71f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..72d50836 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: be8b229fc86794d8d85eedfc596e6a79 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..76b47bbb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..b7ec0ee3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 58cf1a4a62ed94eb0a8e9d9e3c8bbf3c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..b2bc71b6 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..1b7de295 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f80261e883bb6443bb2e7050f921f23a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..9690cc4e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..d326dcb7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d41b35e6761954f538edcffe0f11dbdb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..af46af7d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..1ace21b1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ab6b6c125dd4a4cf3b6161f972cbbbcd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt.meta new file mode 100644 index 00000000..d7e5429e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73854cc2ff35a49418be7375efb437ce +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..8fe228ac Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..cbd6019e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a1fdb042de97d4ebaa171e9ecaab994a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..6f6896fa Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..351aa06b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c086745a78d2c479b9c6c490b40f5a92 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..a540a51c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..64429f77 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 87f6e62f0720f4ff79d9e2af2d64c858 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..3a0bf89a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..1e5f2ec7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5a2e9377ffe6a43a1b6bc576003b2d8e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..037f06e4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..f404ae04 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ad8e3a2fe529944558e4685b5a7eec01 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..438277df Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..5379f34d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0c7edc8ed0c00452b97c697665db95ed +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..dcfd62ed Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..6a0f06cc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 83bd99a29780d4835a521d06d8fbfc79 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..5c9e3ab8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..838dab87 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fc0250b0c4de44329abb806357b45aee +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..bd21c930 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..d57025ee --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 943ecca0ec9694a358248615aa9f8efa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..77f4176e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..5b1b85bd --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b5e9a4cd4205d4ab9bf6ddde26b6aca3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..ec58e883 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..28210f0a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9f2a15c1dd1fb48dbbfd7dfbaca061c0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..84815eb7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..bae60938 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3f71a6ac276d44af88821e5f4abd9776 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..90dd27f2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..c97fe016 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 84eaeed65116549158230fba434bff76 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..287ee7b0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b5445f03 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 17e3dd065e6f64ba5b6e69db64ddfd2c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..3ed7ac6c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..9571424c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d976f0d315ff44dc6ab7f9960ebb1fdf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/2048/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256.meta b/Assets/SocketsAndSwitches/Textures/256.meta new file mode 100644 index 00000000..12b8b948 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7e75717ffcb62471e8420af86c8e1dab +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/256/Black.meta b/Assets/SocketsAndSwitches/Textures/256/Black.meta new file mode 100644 index 00000000..45fd023e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 153a37e8970054b2d89dd4e660c4465a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..4fbba4e9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..3a765039 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e886a19944b954c2bba8f49b934af7ab +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..db58cd86 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..9468ce03 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0432ac67767834a3fb9be5db9e998a68 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_Normal.png new file mode 100644 index 00000000..047c0c0b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..3fd62dd2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bf68bbbd901d14a1db671bd08ae73f31 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..95c8c9ef Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..87c1a949 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: de20ef2d55cf940a6aff882192e35e1b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..ba7b62cf Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..d7447068 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f7481e6958aae4477bec3e36d6bcf8a6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_Normal.png new file mode 100644 index 00000000..8befd532 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..faf60ff7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d2c0095503b8440bda525429e87aeafb +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..86ea22f1 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..1aca7063 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f1c1cd99414f0419d9f7237b2a951b0c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..2d87ecef Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..bb9de1c8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bad6230d5a3dd497a997019847b6487d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_Normal.png new file mode 100644 index 00000000..68e71f43 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..3f742420 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3932f0d5678e54ee98af9d857142a21e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..ed95f342 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..6275fcb3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c7e8c2eeffb77439384c5df6809f1b2b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..fa1e1f9d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..2ebf14aa --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 551e33106afbf4897a59f2883546faa4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..b92b803f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..00fc8db4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 137442f4fb49243db8c49b2b8cd3eec0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..f8f78fdc Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..6ac7f5dd --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 329aca0938bca436f920020ce69b5cd4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..0aecca52 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..06295b85 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c0b20b508f6744c5fa2b0962dca5cde7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..73ba5858 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..8cefe1cf --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 582c42487cc89429492d0ef28ebdab2a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt.meta new file mode 100644 index 00000000..a085f2e3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c89e3de451e840efb469396680d5c2a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..f75f3f64 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..bd1a250f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 86b2be9c8d2e24cd1afd5ee501e832d4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..1549fa38 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..56fad170 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 33c7b11989c104e208bc47206be34751 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..738a2f07 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..89609c95 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 713152d0af6ba4d6e98007d6d3951244 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..7c4eef83 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..ab73b133 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ba2f04293d6a14a408c137868479325f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..aff1ab60 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..1cbf4ce8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c23a54ae16f9c4a948b20d6815c2756d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..c688f69f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..ca382684 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b34cccd9b07a243a189ae925e2f9a59b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..da4b111a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..d79b8d24 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: aeaf71b21a7e04a44ab8800bf1a986c6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..3163536b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..f25d20e7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: eac0b4d0b7d194f5db9d2906095a5081 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..8c306bcf Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..7bc45a18 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fe851ed987c454cae8a9acfe5a2e5eca +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..d9988794 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..004a6b89 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 29e5d95d2c6f24f22bbe720684b5e116 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..5e388771 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..86d29250 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ea6f83841413b493ca11cbe643ababc6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..41b9b68f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..73d9a5d7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3a062ffaf51ca4f288731932b9930f04 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..9bb14afa Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..07b97c37 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bc89f28fd2b6c4c6598636efe6a36113 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..b4ed0caa Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..113c0fbe --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 707a460008e914ca48081989e0b1f9f6 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..7a31ab7f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..1f33f686 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e0d0bdb4e874348bdac74320276f8e75 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White.meta b/Assets/SocketsAndSwitches/Textures/256/White.meta new file mode 100644 index 00000000..fb2d6533 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 148c9f5c24ca24abe8e032048f762fe0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..11198e74 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..5824c521 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 674f1aa1ec6624651aa10259dd0a011e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..7beb803c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..4787eff4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ccd2ff41ce60e4219bd2687be3501531 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_Normal.png new file mode 100644 index 00000000..047c0c0b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..41b063eb --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b6c6dd2e0eb2f4c93ae654b36aba956b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..fb13c4bc Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..e63d14c6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e22346a2fca14403f9a171dc8d28ed1e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..f7b4edda Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..9e2e1f17 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a7f6112e3894a424eaea2ec71f74104c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_Normal.png new file mode 100644 index 00000000..8befd532 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..6e233124 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 4d15ed4a369944391a31fdcf7e3c9634 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..5fe72e02 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..eecff058 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 70b2bf1d67f684611bf8f2abd3ec7d7d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..185018ce Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..773e4cc9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 78e1897897b2c44f295108cc4f4fa5e4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_Normal.png new file mode 100644 index 00000000..68e71f43 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..ed559571 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7d73b9ecba33b435eacae62aab504554 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..eb7fe37f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..ee7d5baa --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e954752ae30254c74a3d3bcb6b749b24 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..21e0d49f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..686af9ed --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a503fb58c5add460389b64f71fcf6c6e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..b92b803f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..7a42d10f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cb4de7b3b2e3b4eab937e69ec26ecc32 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..acc91d88 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..d42bbcfc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b85fc0d8c61834160902df68b48fc321 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..b76bd802 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..ca6bc8d6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 16c855ccf23a64997ba83b9c4c2acbb0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..73ba5858 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..cc7d273d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3e47a9d7aff574bdb8f803a6d5999eb3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt.meta new file mode 100644 index 00000000..ed43f8b3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 86016741be6b7457cbc8db6bf1de5a8c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..01a3ab71 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..caa4e9e1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9409891d1ca0f47879ca7b95d1af328c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..00548e60 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..328b0e95 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: d23a0956119b24ab18b9bcd1a7255bea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..738a2f07 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..cc0d6df8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b8cd270c46ba248b6869548aa8fcedae +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..63b487fb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..5499c90b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 01a9797e21c7143fba391f6d74a3b389 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..00febaac Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..994aead8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7d1d6db773eb640ec947a093e6509b44 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..c688f69f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..414de009 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 55ec1356018e04ace901340a485a94f5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..179738b7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..0957da21 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: df1a630aff0ed42f5b0a9345dd49e3bf +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..c95a9951 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..16072cd7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 63cd4d756b58f4109b685e3790e0e3c4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..8c306bcf Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..09d30468 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: dcd27594e93f146aaa4719715f4d1226 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..bba19a66 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..5b170a9e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c6189e6c756df4e2da743d8dcfcf5ff5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..ca66eb49 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a5498e36 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 7007d26c019cd446a928d0e99103e0ba +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..41b9b68f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..b22c13b1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6fbb6071df5fd41779f60a531bc5d2d5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..ca5b20a4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..b122475e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 625a1a028b22546f3be5d180c26ddd92 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..5c166245 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..093533e0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 45161768e826840a3878125228fa651a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..7a31ab7f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..7e4e7392 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 717743d557fba48cc82dff5f9f62b05e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 256 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/256/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512.meta b/Assets/SocketsAndSwitches/Textures/512.meta new file mode 100644 index 00000000..8a20f9e9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc0ff41f80e1d4d538b59479e8b39a58 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/Black.meta b/Assets/SocketsAndSwitches/Textures/512/Black.meta new file mode 100644 index 00000000..b07fb478 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 849418a50ab7441caa80bd3c28b7ffb6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..0550f770 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..75345199 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cceb9f24c18e64d6495601483d37a9d0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..c597ab91 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..679b3708 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f0eb8fc16954f4a409e1743aa6b7dab5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_Normal.png new file mode 100644 index 00000000..dbe02099 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..016f77c0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9133649ec43234e9a9a8a86ab798d197 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..abcf8728 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..3aac9df7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5d57cb7011cd2482f93e4351fbecc16f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..f43a06ea Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a401caec --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 52bd1778ec24b47c08c5694ac636b766 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_Normal.png new file mode 100644 index 00000000..628ddfa9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..e4282e4f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 717d6274faf924a2d85277ae400ebb34 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..37686789 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..6866d38a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 12cbbe2ca0b734f9f92265ae121a7b5b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..c89bd56c Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b9b260c5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 06b36fadc0bcf4480be7822cfefed1ed +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_Normal.png new file mode 100644 index 00000000..5d641501 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..ed12412a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: ae70fff7c53df42a098fb32855477905 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..129915a1 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..5acb50da --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 705cd1ccad4f54a95b5d589c76af3f08 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..c3d33817 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..54ffe0d1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: be965b6220b5745cb903885f742e5f25 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..6d2d2e86 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..6e092d86 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f1698c303d255493a9edae362d7129a1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..39e813a3 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..160f2782 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f496aae3f9b034da1b52f5d8132a3912 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..3a5f0641 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a0015128 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 9b0adcd06d77c4627b7d617bb0597431 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..f973834e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..e5638759 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 84cc9d071381f4055a4fca68b25f1ffa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt.meta new file mode 100644 index 00000000..c0be1917 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ef0e6d17bf88490cb7f1f0ba33b2934 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..bce4524b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..3e4ccdc3 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a8ecf70eef07f40a69b4f8adde36b5c5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..2a428afe Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..1f547be9 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1206aabe272ca4fa3b559f16f9d306ba +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..bcecb1f2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..f5abfab2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2f0d55f37d397458cac38bca0edf7245 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..a03245ec Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..4ec69308 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fe17c55343d96446a9136697147f6ede +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..f8e8d2bf Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a73d5584 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0ac36ab8e49ef422eb6d281f08f6ba27 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..b52f3db5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..5b98f02f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fc3bc7ab51c7a48d3ab6e62fdcb4b6b4 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..e01558c8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..342e4d2b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 74a91a6383973426280f388f97af6ed3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..ea733050 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..c33ef917 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 80c63efef5d344e02920e5a6556d395f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..49704d05 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..2bffe5d4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5b32d64349b7340fcb15601cfe6c5c75 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..58048009 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..85b6b98e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b475c8c10452a4ed8894cfa2f5f819b8 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..f5514023 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..e0f07278 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 39229142b92e5417ba2daa331969544a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..da359d9a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..9044475a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2939bb39ba2f84bdba62705060fd7386 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..d36ff6b7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..99c369a1 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f941b99af96b74ff68be8dda1da7252b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..8a359f40 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..38e9a108 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6b6b9f6025f994d3a9545a6fc85fb641 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..16b035a4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..e8ff506e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8f73330de4182462787bc3563d187852 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation.meta new file mode 100644 index 00000000..7b46ca8f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7dead2aac8dcb4e4ba030fa68b4be6a2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black.meta new file mode 100644 index 00000000..f0ad8a2c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bcbee1bb24db54037ac122e0f38d0cd4 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..f61681a7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..7cbfb686 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: edfacf86393dc4d18a273875ab80a935 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..25a97d3b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..cc311b9f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3c46ca6c0601848a1ad7b20389911905 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_Normal.png new file mode 100644 index 00000000..558b5de5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..b948234c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bb1b006cc914c458fbe36f213d0b530d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..d9638fe8 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..90093e2d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 66e1a2bd3ac794ea79d6af7738b779e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..8aabb306 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..d88c4667 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 2b1109db5788d4e0f89924666d220831 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_Normal.png new file mode 100644 index 00000000..6e83a0d1 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..33d381ce --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: cd2aceb90d2bd478dab8caa2cdce6cf5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/Black/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt.meta new file mode 100644 index 00000000..252e2f3f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 040ff914b830d4913b82073567891d8a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..0c1f426a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..337c6b35 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b8dcf6ad9b89544bdaf257da09c348ac +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..07adbaa0 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..ec83b171 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 077b063de5d4443558eb292044cd9f3e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..a8a76c6f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..e9983282 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e38c95858a8314c7eb8aa30af1a69caa +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..a3e119cb Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..2f5b7e7e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: fcd8a5ace50e74e108a70912635dbaab +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..08c2db8b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..8795aae0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 78b09baaef17c4026b01cea59f628b87 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..ade7fc9d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..eccac1d7 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 37281cad588f7473ba8df1e928c12042 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/BlackDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/White.meta new file mode 100644 index 00000000..e561ee94 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 55fd4265e415b4f9a93648c807da5249 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..483b1016 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..8d65276e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: eeffe1997e2be4bee979e3bbc1f06bfd +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..4df82e83 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..4a6d5cd8 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8b711d4a1ef5f4f84b9d88ededf358e0 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..558b5de5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..332d0f10 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 542fb4d8dbbed4f30996f766ef866748 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..154876de Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..88670de6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 912b53840bb7644edbd966a3f16d3253 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..c69bdfaf Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..6f58fd9e --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c5a4e873e45474cceb1d8ddea48cc6db +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..6e83a0d1 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..16a5fe3b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: aadb831ddac29494390c69a486a99d0d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt.meta new file mode 100644 index 00000000..740d6f1c --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 982b4cef370a3410c8c4812de2c0b6bc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..f696ca67 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..ec368872 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 64f65c388c2be4948b785b1eb4b8ec6b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..80deed1b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..e608b9cf --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: da707aa4d4caa4141979ae17d8b76dca +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..a8a76c6f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..e0315f16 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 259d96e009b2641fe98d950c17a7ae3e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..a2fe7e12 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..8e149a35 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6cda748a9532846b1a921f0dd38b4dd9 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..fca5c512 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b6ef4b24 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8442391cfa11140f1b52a849b8967f7a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..ade7fc9d Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..c42d1bab --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0c169ba0effdb4e608c4fa63124e8b42 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/Rotation/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White.meta b/Assets/SocketsAndSwitches/Textures/512/White.meta new file mode 100644 index 00000000..6bac2dbc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 176c4a7d12e1d48b59a55aef2c88e5b9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..3c0c3218 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..6ae2f66b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: b5141182b4e43422086e165832b5731d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..d6eb9296 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..2d105822 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 88cef4add2bbb4d25a61671519358a5a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_Normal.png new file mode 100644 index 00000000..dbe02099 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..7115bcfc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 41a3ae19d6f2643ff928b35a499c13dc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..10d40edc Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..2ad31282 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e16b9747500774282852a719e8e33b66 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..e7946d5f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..c2eae5d5 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 8852bf89ea2e24eccbba820a4e058210 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_Normal.png new file mode 100644 index 00000000..628ddfa9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..1138f890 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: dc43b6161349b472c9f7c2ef8de53024 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..23e540d9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..8e7ffa0f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 61e86b05025584ff092c620e04dfb280 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..a52e5df3 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..b4073ff2 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: f129751538def4b68a70ebed3a3d53e5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_Normal.png new file mode 100644 index 00000000..5d641501 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..b662f4c4 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c784be1e2f6714ccbad4096ddc5f788a +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..b57e7fa7 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..901b2663 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 204f20cc7a8524d78b0ce3d094e47dd1 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..00f79874 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..8de6f74d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 88c36acbb11de44a7a385eccd9c4c22f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_Normal.png new file mode 100644 index 00000000..6d2d2e86 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..e10f1e6b --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: e2e17bb4e7d5143718fabf8fe06de149 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..b96bb343 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..8da4f461 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c39a008ead1524fb8892ca659fe8fbff +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..dd564b92 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..db761b18 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 23236bbb42d244c4e8a779b1dcad66ea +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_Normal.png new file mode 100644 index 00000000..f973834e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..f86eb643 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 0256abd82e6294206892556937a0f471 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/White/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt.meta new file mode 100644 index 00000000..c846e801 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 53616e72f76734a2897bb09b0bb6a9ef +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_AlbedoTransparency.png new file mode 100644 index 00000000..f55233ec Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta new file mode 100644 index 00000000..5f5e215d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3e2343a39927642068ec136c466db86c +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_MetallicSmoothness.png new file mode 100644 index 00000000..7f49b273 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta new file mode 100644 index 00000000..a524f59f --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: c30f0ee0443974cdd954a96b735859a7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_Normal.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_Normal.png new file mode 100644 index 00000000..bcecb1f2 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_Normal.png.meta new file mode 100644 index 00000000..82ffe271 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6423485bf1cfa4c9695467cc8340519d +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/InsideMaterial_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_AlbedoTransparency.png new file mode 100644 index 00000000..a9d53724 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..b2ca30f6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 3712e1aa9235c42b192b9327b6cfebbc +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_MetallicSmoothness.png new file mode 100644 index 00000000..268a874e Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..e2170683 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 81668fde7987e4a28b39ea20624e26e3 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_Normal.png new file mode 100644 index 00000000..b52f3db5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_Normal.png.meta new file mode 100644 index 00000000..8da2b2c6 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: a998bc1c472bb4ed9b33fa94554747b5 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket02Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_AlbedoTransparency.png new file mode 100644 index 00000000..4e0bbfbe Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..2a8ba657 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 66a63d468917f4e50a5a8f9afa913806 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_MetallicSmoothness.png new file mode 100644 index 00000000..e70460c5 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..778889dc --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: feef25dd29c8f478b9ded834fbc2122b +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_Normal.png new file mode 100644 index 00000000..49704d05 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_Normal.png.meta new file mode 100644 index 00000000..5646015d --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 514e7c9af6ad245698c479240e701be7 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/Socket03Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_AlbedoTransparency.png new file mode 100644 index 00000000..d88e0df9 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..114d79eb --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1569a129287574e8e9d3bef239d54860 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_MetallicSmoothness.png new file mode 100644 index 00000000..3bbec1ca Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..5febf701 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: bc5ec69b370ee4ea989112728f6c005f +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_Normal.png new file mode 100644 index 00000000..da359d9a Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_Normal.png.meta new file mode 100644 index 00000000..1ec0c78a --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 1b92ad6f0c6f043d481ba00d5bb632ff +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase01Material_Normal.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_AlbedoTransparency.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_AlbedoTransparency.png new file mode 100644 index 00000000..7e9db81f Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_AlbedoTransparency.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta new file mode 100644 index 00000000..111f5af0 --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_AlbedoTransparency.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 5e4ef4bc63dce4e0489f16696853d021 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_AlbedoTransparency.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_MetallicSmoothness.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_MetallicSmoothness.png new file mode 100644 index 00000000..87c6000b Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_MetallicSmoothness.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta new file mode 100644 index 00000000..0135d2db --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_MetallicSmoothness.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6d368fae232c84935ad61f8e9f8c15b2 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + 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 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 0 + wrapV: 0 + wrapW: 0 + nPOTScale: 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 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_MetallicSmoothness.png + uploadId: 582063 diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_Normal.png b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_Normal.png new file mode 100644 index 00000000..16b035a4 Binary files /dev/null and b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_Normal.png differ diff --git a/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_Normal.png.meta b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_Normal.png.meta new file mode 100644 index 00000000..339fcfaa --- /dev/null +++ b/Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_Normal.png.meta @@ -0,0 +1,130 @@ +fileFormatVersion: 2 +guid: 6c198679782004d74a01eb071043dd67 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 0 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 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: 1 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 512 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: +AssetOrigin: + serializedVersion: 1 + productId: 233085 + packageName: Free Sockets and Switches + packageVersion: 1.1.0 + assetPath: Assets/SocketsAndSwitches/Textures/512/WhiteDirt/SocketCase02Material_Normal.png + uploadId: 582063 diff --git a/ProjectSettings/PackageManagerSettings.asset b/ProjectSettings/PackageManagerSettings.asset index be4a7974..0eb1f6b9 100644 --- a/ProjectSettings/PackageManagerSettings.asset +++ b/ProjectSettings/PackageManagerSettings.asset @@ -12,11 +12,13 @@ MonoBehaviour: m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} m_Name: m_EditorClassIdentifier: - m_EnablePreviewPackages: 0 - m_EnablePackageDependencies: 0 + m_EnablePreReleasePackages: 0 m_AdvancedSettingsExpanded: 1 m_ScopedRegistriesSettingsExpanded: 1 + m_SeeAllPackageVersions: 0 + m_DismissPreviewPackagesInUse: 0 oneTimeWarningShown: 0 + oneTimeDeprecatedPopUpShown: 1 m_Registries: - m_Id: main m_Name: @@ -24,20 +26,12 @@ MonoBehaviour: m_Scopes: [] m_IsDefault: 1 m_Capabilities: 7 + m_ConfigSource: 0 m_UserSelectedRegistryName: m_UserAddingNewScopedRegistry: 0 m_RegistryInfoDraft: - m_ErrorMessage: - m_Original: - m_Id: - m_Name: - m_Url: - m_Scopes: [] - m_IsDefault: 0 - m_Capabilities: 0 m_Modified: 0 - m_Name: - m_Url: - m_Scopes: - - - m_SelectedScopeIndex: 0 + m_ErrorMessage: + m_UserModificationsInstanceId: -864 + m_OriginalInstanceId: -866 + m_LoadAssets: 0