From 9a639c2e540f8604f63c8eb8248b1fe387268b3a Mon Sep 17 00:00:00 2001 From: Nam Tae Gun Date: Mon, 17 Jun 2024 08:41:21 +0900 Subject: [PATCH] =?UTF-8?q?#23=20See=20Through(=EC=94=A8=EC=8A=A4=EB=A3=A8?= =?UTF-8?q?)=20=EA=B8=B0=EB=8A=A5=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit + FlashAndShadowLit 쉐이더에 씨스루 기능 추가 + FlashAndShadowSeeThroughLit material을 보스 몬스터에게 적용 Closes #23 --- Assets/01.Scenes/02.Combat.unity | 16 + Assets/02.Scripts/SeeThrough.cs | 55 + Assets/02.Scripts/SeeThrough.cs.meta | 2 + Assets/04.Materials/FlashAndShadowLit.mat | 6 +- .../FlashAndShadowSeeThroughLit.mat | 146 + .../FlashAndShadowSeeThroughLit.mat.meta | 8 + .../Characters/Enemies/Bosses/BaseBoss.prefab | 5 +- .../Enemies/Bosses/MiniSandMole.prefab | 6 +- .../Characters/Players/CombatPlayer.prefab | 17 + .../09.Shaders/FlashAndShadowLit.shadergraph | 3487 ++++++++++++++++- ...niversalRenderPipelineGlobalSettings.asset | 40 +- ProjectSettings/ProjectSettings.asset | 2 +- 12 files changed, 3691 insertions(+), 99 deletions(-) create mode 100644 Assets/02.Scripts/SeeThrough.cs create mode 100644 Assets/02.Scripts/SeeThrough.cs.meta create mode 100644 Assets/04.Materials/FlashAndShadowSeeThroughLit.mat create mode 100644 Assets/04.Materials/FlashAndShadowSeeThroughLit.mat.meta diff --git a/Assets/01.Scenes/02.Combat.unity b/Assets/01.Scenes/02.Combat.unity index 2789a019b..b4e1b8791 100644 --- a/Assets/01.Scenes/02.Combat.unity +++ b/Assets/01.Scenes/02.Combat.unity @@ -645,6 +645,7 @@ GameObject: - component: {fileID: 191889758} - component: {fileID: 191889757} - component: {fileID: 191889755} + - component: {fileID: 191889763} m_Layer: 0 m_Name: Main Camera m_TagString: MainCamera @@ -826,6 +827,21 @@ Transform: m_Children: [] m_Father: {fileID: 0} m_LocalEulerAnglesHint: {x: 9.569, y: 87.98, z: 0} +--- !u!114 &191889763 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 191889754} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e10b9e7f73cb07c4e8dd98aa4b10a97d, type: 3} + m_Name: + m_EditorClassIdentifier: + _maskLayer: + serializedVersion: 2 + m_Bits: 1024 --- !u!1 &235144445 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/02.Scripts/SeeThrough.cs b/Assets/02.Scripts/SeeThrough.cs new file mode 100644 index 000000000..c5f93ada7 --- /dev/null +++ b/Assets/02.Scripts/SeeThrough.cs @@ -0,0 +1,55 @@ +using UnityEngine; + +namespace BlueWater +{ + public class SeeThrough : MonoBehaviour + { + [SerializeField] + private LayerMask _maskLayer; + + private Camera _mainCamera; + private Renderer _previousRenderer; + + // Hashes + private static readonly int _sizeHash = Shader.PropertyToID("_Size"); + + private void Start() + { + _mainCamera = CombatCameraManager.Instance.MainCamera; + } + + private void Update() + { + if (!_mainCamera) return; + + var direction = _mainCamera.transform.position - transform.position; + var ray = new Ray(transform.position, direction.normalized); + + if (Physics.Raycast(ray, out var hit, 100f, _maskLayer)) + { + var hitRenderer = hit.collider.GetComponentInChildren(); + if (!hitRenderer) return; + + if (!hitRenderer.material.HasProperty(_sizeHash)) return; + + if (_previousRenderer && _previousRenderer != hitRenderer && _previousRenderer.material.HasProperty(_sizeHash)) + { + _previousRenderer.material.SetFloat(_sizeHash, 0f); + } + + hitRenderer.material.SetFloat(_sizeHash, 0.5f); + _previousRenderer = hitRenderer; + } + else + { + if (!_previousRenderer) return; + + if (_previousRenderer.material.HasProperty(_sizeHash)) + { + _previousRenderer.material.SetFloat(_sizeHash, 0f); + } + _previousRenderer = null; + } + } + } +} \ No newline at end of file diff --git a/Assets/02.Scripts/SeeThrough.cs.meta b/Assets/02.Scripts/SeeThrough.cs.meta new file mode 100644 index 000000000..3f412e5e0 --- /dev/null +++ b/Assets/02.Scripts/SeeThrough.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e10b9e7f73cb07c4e8dd98aa4b10a97d \ No newline at end of file diff --git a/Assets/04.Materials/FlashAndShadowLit.mat b/Assets/04.Materials/FlashAndShadowLit.mat index 0a40b004b..381277abb 100644 --- a/Assets/04.Materials/FlashAndShadowLit.mat +++ b/Assets/04.Materials/FlashAndShadowLit.mat @@ -104,13 +104,16 @@ Material: - _GlossyReflections: 0 - _GlowSize: 0.1 - _IsHit: 0 + - _IsSeeThrough: 0 - _Metallic: 0 - _OcclusionStrength: 1 + - _Opacity: 1 - _Parallax: 0.005 - _QueueControl: 0 - _QueueOffset: 0 - _ReceiveShadows: 1 - - _Smoothness: 0.5 + - _Size: 0.5 + - _Smoothness: 0.8 - _SmoothnessTextureChannel: 0 - _SpecularHighlights: 1 - _SrcBlend: 1 @@ -124,6 +127,7 @@ Material: - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} - _FlashColor: {r: 1, g: 1, b: 1, a: 1} - _GlowColor: {r: 5.3403134, g: 5.3403134, b: 0, a: 0} + - _PlayerPosition: {r: 0.5, g: 0.5, b: 0, a: 0} - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} m_BuildTextureStacks: [] m_AllowLocking: 1 diff --git a/Assets/04.Materials/FlashAndShadowSeeThroughLit.mat b/Assets/04.Materials/FlashAndShadowSeeThroughLit.mat new file mode 100644 index 000000000..393a227ab --- /dev/null +++ b/Assets/04.Materials/FlashAndShadowSeeThroughLit.mat @@ -0,0 +1,146 @@ +%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: FlashAndShadowSeeThroughLit + m_Shader: {fileID: -6465566751694194690, guid: 2ae669fb2106b9c4c9fe1f07564e3fb5, type: 3} + m_Parent: {fileID: 0} + m_ModifiedSerializedProperties: 0 + m_ValidKeywords: [] + m_InvalidKeywords: [] + m_LightmapFlags: 4 + m_EnableInstancingVariants: 0 + m_DoubleSidedGI: 0 + m_CustomRenderQueue: -1 + stringTagMap: {} + disabledShaderPasses: + - MOTIONVECTORS + m_LockedProperties: + m_SavedProperties: + serializedVersion: 3 + m_TexEnvs: + - _BaseMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _BumpMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailAlbedoMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailMask: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _DetailNormalMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _EmissionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MainTex: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _MetallicGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _OcclusionMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _ParallaxMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _SpecGlossMap: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_Lightmaps: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_LightmapsInd: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - unity_ShadowMasks: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + m_Ints: [] + m_Floats: + - _AddPrecomputedVelocity: 0 + - _AlphaClip: 0 + - _AlphaClipThreshold: 0.2 + - _AlphaToMask: 0 + - _Blend: 0 + - _BlendModePreserveSpecular: 1 + - _BumpScale: 1 + - _ClearCoatMask: 0 + - _ClearCoatSmoothness: 0 + - _Cull: 2 + - _Cutoff: 0.5 + - _DetailAlbedoMapScale: 1 + - _DetailNormalMapScale: 1 + - _DissolveValue: 1 + - _DstBlend: 0 + - _DstBlendAlpha: 0 + - _EnvironmentReflections: 1 + - _GlossMapScale: 0 + - _Glossiness: 0 + - _GlossyReflections: 0 + - _GlowSize: 0.1 + - _IsHit: 0 + - _IsSeeThrough: 1 + - _Metallic: 0 + - _OcclusionStrength: 1 + - _Opacity: 0.7 + - _Parallax: 0.005 + - _QueueControl: 0 + - _QueueOffset: 0 + - _ReceiveShadows: 1 + - _Size: 0 + - _Smoothness: 0.8 + - _SmoothnessTextureChannel: 0 + - _SpecularHighlights: 1 + - _SrcBlend: 1 + - _SrcBlendAlpha: 1 + - _Surface: 0 + - _WorkflowMode: 1 + - _ZWrite: 1 + m_Colors: + - _BaseColor: {r: 1, g: 1, b: 1, a: 1} + - _Color: {r: 1, g: 1, b: 1, a: 1} + - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} + - _FlashColor: {r: 1, g: 1, b: 1, a: 1} + - _GlowColor: {r: 5.3403134, g: 5.3403134, b: 0, a: 0} + - _PlayerPosition: {r: 0.5, g: 0.55, b: 0, a: 0} + - _SpecColor: {r: 0.19999996, g: 0.19999996, b: 0.19999996, a: 1} + m_BuildTextureStacks: [] + m_AllowLocking: 1 +--- !u!114 &3929801182760292753 +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/04.Materials/FlashAndShadowSeeThroughLit.mat.meta b/Assets/04.Materials/FlashAndShadowSeeThroughLit.mat.meta new file mode 100644 index 000000000..19ee19fac --- /dev/null +++ b/Assets/04.Materials/FlashAndShadowSeeThroughLit.mat.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1ad7e8b18587eb64b98d1c75db32dc5a +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 2100000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/05.Prefabs/Characters/Enemies/Bosses/BaseBoss.prefab b/Assets/05.Prefabs/Characters/Enemies/Bosses/BaseBoss.prefab index 944e7a383..b097c05b7 100644 --- a/Assets/05.Prefabs/Characters/Enemies/Bosses/BaseBoss.prefab +++ b/Assets/05.Prefabs/Characters/Enemies/Bosses/BaseBoss.prefab @@ -87,7 +87,7 @@ SpriteRenderer: m_RenderingLayerMask: 1 m_RendererPriority: 0 m_Materials: - - {fileID: 2100000, guid: 5c6f6dc6f5c647d4896df9a909d6c27b, type: 2} + - {fileID: 2100000, guid: 1ad7e8b18587eb64b98d1c75db32dc5a, type: 2} m_StaticBatchInfo: firstSubMesh: 0 subMeshCount: 0 @@ -397,7 +397,7 @@ MonoBehaviour: _particleInstantiateLocation: {fileID: 0} k__BackingField: 0 k__BackingField: 0 - _damageInterval: 0.1 + k__BackingField: 0.1 _attackedSfxName: _dieSfxName: _attackedParticle: {fileID: 0} @@ -414,6 +414,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 17488a2bea6f4126a7877ce5d934f865, type: 3} m_Name: m_EditorClassIdentifier: + _animator: {fileID: 0} --- !u!114 &6865346796134993564 MonoBehaviour: m_ObjectHideFlags: 0 diff --git a/Assets/05.Prefabs/Characters/Enemies/Bosses/MiniSandMole.prefab b/Assets/05.Prefabs/Characters/Enemies/Bosses/MiniSandMole.prefab index 6f76f0713..2f5f6bb58 100644 --- a/Assets/05.Prefabs/Characters/Enemies/Bosses/MiniSandMole.prefab +++ b/Assets/05.Prefabs/Characters/Enemies/Bosses/MiniSandMole.prefab @@ -152,7 +152,7 @@ MonoBehaviour: _particleInstantiateLocation: {fileID: 0} k__BackingField: 0 k__BackingField: 0 - _damageInterval: 0.1 + k__BackingField: 0.1 _attackedSfxName: _dieSfxName: _attackedParticle: {fileID: 0} @@ -169,6 +169,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 17488a2bea6f4126a7877ce5d934f865, type: 3} m_Name: m_EditorClassIdentifier: + _animator: {fileID: 0} --- !u!114 &7340811205062043670 MonoBehaviour: m_ObjectHideFlags: 0 @@ -220,7 +221,8 @@ MonoBehaviour: k__BackingField: {fileID: 7340811205062043670} k__BackingField: {fileID: 5803390076891020730} k__BackingField: {fileID: 0} - _dissolveTime: 2 + _spawnDissolveTime: 2 + _dieDissolveTime: 1 --- !u!1 &1453483310400411938 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/05.Prefabs/Characters/Players/CombatPlayer.prefab b/Assets/05.Prefabs/Characters/Players/CombatPlayer.prefab index 0d3e1e1a5..c109fcbb7 100644 --- a/Assets/05.Prefabs/Characters/Players/CombatPlayer.prefab +++ b/Assets/05.Prefabs/Characters/Players/CombatPlayer.prefab @@ -74,6 +74,7 @@ GameObject: - component: {fileID: 3677775080446906429} - component: {fileID: 9129295631914427799} - component: {fileID: 260539324676461127} + - component: {fileID: 7608738450534251423} m_Layer: 9 m_Name: CombatPlayer m_TagString: Untagged @@ -513,6 +514,22 @@ MonoBehaviour: serializedVersion: 2 m_Bits: 256 _maxHitCount: 8 +--- !u!114 &7608738450534251423 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6290149650087484560} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e10b9e7f73cb07c4e8dd98aa4b10a97d, type: 3} + m_Name: + m_EditorClassIdentifier: + _maskLayer: + serializedVersion: 2 + m_Bits: 1024 + _material: {fileID: 2100000, guid: 1ad7e8b18587eb64b98d1c75db32dc5a, type: 2} --- !u!1 &7185106063436424164 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/09.Shaders/FlashAndShadowLit.shadergraph b/Assets/09.Shaders/FlashAndShadowLit.shadergraph index 2a8fe752f..d5a60dbc0 100644 --- a/Assets/09.Shaders/FlashAndShadowLit.shadergraph +++ b/Assets/09.Shaders/FlashAndShadowLit.shadergraph @@ -26,6 +26,21 @@ }, { "m_Id": "937dbd531b2045c8966857c7e7de4656" + }, + { + "m_Id": "b2aed905ceb54037a8f5fc1f577ef040" + }, + { + "m_Id": "9c91c2823f58454f89bbdbe24b31256b" + }, + { + "m_Id": "9d7f6939db644c6fb575cb3e0bb919b9" + }, + { + "m_Id": "feebbb50dab94029835a47bc848e9929" + }, + { + "m_Id": "ec9d7af63e714530b9a1403da591d291" } ], "m_Keywords": [], @@ -128,6 +143,78 @@ }, { "m_Id": "cae0dd63607446819e065003264d8d43" + }, + { + "m_Id": "3801df7c41264a86b150ba1a85e36339" + }, + { + "m_Id": "c9fa640439fd49aa8b312108bb915b69" + }, + { + "m_Id": "db8999654cf6454ea257a997af207110" + }, + { + "m_Id": "fcd8e49808ec4130a84b3c18db5a6162" + }, + { + "m_Id": "644e5a6ffba8445aacb404c0c2434974" + }, + { + "m_Id": "8babc85160e141bf82965cfe7d448dca" + }, + { + "m_Id": "b8c90ecbd90748e29a355fa69a8cf5d6" + }, + { + "m_Id": "77b45989211247058dd78f6dcf2a293e" + }, + { + "m_Id": "497a70afa7af4313903572a58df8d434" + }, + { + "m_Id": "634e0245d9164687989aa89e531b4ebd" + }, + { + "m_Id": "fe03b847a83e4aff906c6327727bd9bb" + }, + { + "m_Id": "3fad817e3118457fa950440491819547" + }, + { + "m_Id": "68693fe6e7794e7ea5807cd44209acd4" + }, + { + "m_Id": "763767978d79449daea3cefde5d819f3" + }, + { + "m_Id": "f3f376136c9e4ccaba13ef990f582962" + }, + { + "m_Id": "2523012537df4cabb2a7efe1f7accfe9" + }, + { + "m_Id": "5057b3a991b546c2915f07aff660e2d2" + }, + { + "m_Id": "300b3c59d6ee4b89ab812eca501e583c" + }, + { + "m_Id": "e3c4060fc6a44f6d9dd0ef3dac00a941" + }, + { + "m_Id": "39bec63f5b614fb28d92e307ffd3bb17" + }, + { + "m_Id": "e73ce72a402c47b8864ab202e05d98ea" + }, + { + "m_Id": "5f5491eeb841419b87280693ff62e890" + }, + { + "m_Id": "a286bace7ffd4c5290bca8a37227f8d7" + }, + { + "m_Id": "9640be9ed98f42dda255e8706c7749fe" } ], "m_GroupDatas": [ @@ -136,6 +223,9 @@ }, { "m_Id": "6b91136343e54196a9335ae1e611082e" + }, + { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" } ], "m_StickyNoteDatas": [], @@ -224,6 +314,20 @@ "m_SlotId": 1 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "2523012537df4cabb2a7efe1f7accfe9" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "5057b3a991b546c2915f07aff660e2d2" + }, + "m_SlotId": 2 + } + }, { "m_OutputSlot": { "m_Node": { @@ -252,6 +356,20 @@ "m_SlotId": 0 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "300b3c59d6ee4b89ab812eca501e583c" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "5057b3a991b546c2915f07aff660e2d2" + }, + "m_SlotId": 1 + } + }, { "m_OutputSlot": { "m_Node": { @@ -280,6 +398,62 @@ "m_SlotId": 1 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3801df7c41264a86b150ba1a85e36339" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "644e5a6ffba8445aacb404c0c2434974" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3801df7c41264a86b150ba1a85e36339" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c9fa640439fd49aa8b312108bb915b69" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "39bec63f5b614fb28d92e307ffd3bb17" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "e3c4060fc6a44f6d9dd0ef3dac00a941" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "3fad817e3118457fa950440491819547" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "763767978d79449daea3cefde5d819f3" + }, + "m_SlotId": 0 + } + }, { "m_OutputSlot": { "m_Node": { @@ -308,6 +482,48 @@ "m_SlotId": 1 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "497a70afa7af4313903572a58df8d434" + }, + "m_SlotId": 6 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "8babc85160e141bf82965cfe7d448dca" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "497a70afa7af4313903572a58df8d434" + }, + "m_SlotId": 7 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "8babc85160e141bf82965cfe7d448dca" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "5057b3a991b546c2915f07aff660e2d2" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "39bec63f5b614fb28d92e307ffd3bb17" + }, + "m_SlotId": 0 + } + }, { "m_OutputSlot": { "m_Node": { @@ -336,6 +552,20 @@ "m_SlotId": 1 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "5f5491eeb841419b87280693ff62e890" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fa0aa14897a649d98c23c2eb134bd9a3" + }, + "m_SlotId": 0 + } + }, { "m_OutputSlot": { "m_Node": { @@ -350,6 +580,90 @@ "m_SlotId": 1 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "634e0245d9164687989aa89e531b4ebd" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fe03b847a83e4aff906c6327727bd9bb" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "644e5a6ffba8445aacb404c0c2434974" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "c9fa640439fd49aa8b312108bb915b69" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "68693fe6e7794e7ea5807cd44209acd4" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3fad817e3118457fa950440491819547" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "763767978d79449daea3cefde5d819f3" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "f3f376136c9e4ccaba13ef990f582962" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "77b45989211247058dd78f6dcf2a293e" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "68693fe6e7794e7ea5807cd44209acd4" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "77b45989211247058dd78f6dcf2a293e" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b8c90ecbd90748e29a355fa69a8cf5d6" + }, + "m_SlotId": 1 + } + }, { "m_OutputSlot": { "m_Node": { @@ -378,6 +692,48 @@ "m_SlotId": 0 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "8babc85160e141bf82965cfe7d448dca" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "b8c90ecbd90748e29a355fa69a8cf5d6" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "9640be9ed98f42dda255e8706c7749fe" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "5f5491eeb841419b87280693ff62e890" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "a286bace7ffd4c5290bca8a37227f8d7" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "5f5491eeb841419b87280693ff62e890" + }, + "m_SlotId": 0 + } + }, { "m_OutputSlot": { "m_Node": { @@ -392,6 +748,20 @@ "m_SlotId": 0 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "b8c90ecbd90748e29a355fa69a8cf5d6" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "68693fe6e7794e7ea5807cd44209acd4" + }, + "m_SlotId": 1 + } + }, { "m_OutputSlot": { "m_Node": { @@ -420,6 +790,20 @@ "m_SlotId": 0 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "c9fa640439fd49aa8b312108bb915b69" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "634e0245d9164687989aa89e531b4ebd" + }, + "m_SlotId": 0 + } + }, { "m_OutputSlot": { "m_Node": { @@ -429,7 +813,21 @@ }, "m_InputSlot": { "m_Node": { - "m_Id": "fa0aa14897a649d98c23c2eb134bd9a3" + "m_Id": "5f5491eeb841419b87280693ff62e890" + }, + "m_SlotId": 2 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "cae0dd63607446819e065003264d8d43" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9640be9ed98f42dda255e8706c7749fe" }, "m_SlotId": 0 } @@ -448,6 +846,62 @@ "m_SlotId": 2 } }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "db8999654cf6454ea257a997af207110" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "fcd8e49808ec4130a84b3c18db5a6162" + }, + "m_SlotId": 0 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e3c4060fc6a44f6d9dd0ef3dac00a941" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "9640be9ed98f42dda255e8706c7749fe" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "e73ce72a402c47b8864ab202e05d98ea" + }, + "m_SlotId": 0 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "39bec63f5b614fb28d92e307ffd3bb17" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "f3f376136c9e4ccaba13ef990f582962" + }, + "m_SlotId": 1 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "2523012537df4cabb2a7efe1f7accfe9" + }, + "m_SlotId": 0 + } + }, { "m_OutputSlot": { "m_Node": { @@ -461,6 +915,34 @@ }, "m_SlotId": 0 } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fcd8e49808ec4130a84b3c18db5a6162" + }, + "m_SlotId": 3 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "644e5a6ffba8445aacb404c0c2434974" + }, + "m_SlotId": 1 + } + }, + { + "m_OutputSlot": { + "m_Node": { + "m_Id": "fe03b847a83e4aff906c6327727bd9bb" + }, + "m_SlotId": 2 + }, + "m_InputSlot": { + "m_Node": { + "m_Id": "3fad817e3118457fa950440491819547" + }, + "m_SlotId": 0 + } } ], "m_VertexContext": { @@ -573,6 +1055,30 @@ "m_SupportVFX": false } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "03d675a76f0e40cb971726c971da253d", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.PropertyNode", @@ -609,6 +1115,54 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "0b4b506f5c52469aac37b061126b859c", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.BlockNode", @@ -643,6 +1197,30 @@ "m_SerializedDescriptor": "SurfaceDescription.NormalTS" } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "0c3f536562d241e6a910acfca374c653", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 1, "m_Type": "UnityEditor.ShaderGraph.NoiseNode", @@ -655,10 +1233,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -2139.000244140625, - "y": 797.0, - "width": 208.0001220703125, - "height": 337.0001220703125 + "x": -2833.0, + "y": 552.0, + "width": 208.0, + "height": 336.99993896484377 } }, "m_Slots": [ @@ -767,10 +1345,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1626.999755859375, - "y": 137.0, - "width": 128.0, - "height": 34.0 + "x": -2352.000244140625, + "y": -141.00003051757813, + "width": 127.0, + "height": 34.00000762939453 } }, "m_Slots": [ @@ -791,6 +1369,21 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "117417fd3dc14d999bea702d054bf3fe", + "m_Id": 5, + "m_DisplayName": "Z Buffer Sign", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Z Buffer Sign", + "m_StageCapability": 3, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot", @@ -839,6 +1432,21 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "1796e92ffbbd4a43a9403baef759aa6f", + "m_Id": 0, + "m_DisplayName": "Size", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", @@ -876,10 +1484,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1847.0, - "y": 909.0000610351563, - "width": 146.999755859375, - "height": 34.0001220703125 + "x": -2541.000244140625, + "y": 664.0, + "width": 147.000244140625, + "height": 34.00006103515625 } }, "m_Slots": [ @@ -1030,6 +1638,54 @@ "m_SerializedDescriptor": "SurfaceDescription.Smoothness" } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "1ebf80dc196444eb98572cb0d9b69eb5", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "1f6341f3c7d5430abdfd104bde06b087", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.BlockNode", @@ -1120,10 +1776,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1167.999755859375, - "y": -56.99997329711914, - "width": 133.0, - "height": 33.99999237060547 + "x": -1893.0001220703125, + "y": -335.0, + "width": 133.0001220703125, + "height": 34.0 } }, "m_Slots": [ @@ -1168,6 +1824,65 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "251288be56444c06846e7b7f4c89af28", + "m_Id": 0, + "m_DisplayName": "PlayerPosition", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SaturateNode", + "m_ObjectId": "2523012537df4cabb2a7efe1f7accfe9", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Saturate", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1698.0001220703125, + "y": 1651.0001220703125, + "width": 208.0001220703125, + "height": 278.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "c4fb55c1635e43d88f9d4483bdfd52cb" + }, + { + "m_Id": "9f48240b7adc44aab30c80c8b6df3d59" + } + ], + "synonyms": [ + "clamp" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", @@ -1210,10 +1925,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1014.9998168945313, - "y": -56.99997329711914, - "width": 101.0, - "height": 33.99999237060547 + "x": -1740.000244140625, + "y": -335.0, + "width": 101.000244140625, + "height": 34.0 } }, "m_Slots": [ @@ -1234,6 +1949,54 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "28c6aec3cab445fcbaf3997d5c8c705f", + "m_Id": 1, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "2b892fefa4174295a9d04174ed04b569", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.AddNode", @@ -1277,6 +2040,27 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "2e35640e1737472f8a075fe3c6eb5d60", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", @@ -1292,6 +2076,87 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "300b3c59d6ee4b89ab812eca501e583c", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1528.0, + "y": 1976.0001220703125, + "width": 139.99951171875, + "height": 34.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "50c0a5a4ae614aa08bf3c320039ed5a6" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "feebbb50dab94029835a47bc848e9929" + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "300ef5b5a67847069dfec2902ef60a9b", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "315357758f4b4dc5a00a066b5011d08d", + "m_Id": 1, + "m_DisplayName": "In Min Max", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "InMinMax", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + { "m_SGVersion": 3, "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", @@ -1334,10 +2199,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1700.000244140625, - "y": 797.0, - "width": 208.0001220703125, - "height": 302.0001220703125 + "x": -2394.0, + "y": 550.0000610351563, + "width": 208.0, + "height": 302.00006103515627 } }, "m_Slots": [ @@ -1361,6 +2226,269 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "367081f0ff00461bb9ce71e13c38de33", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "36b7f9536dbe4767afe98b2e4e2081fb", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3705acc0108a44f5ba9cf60c4ee2cee3", + "m_Id": 0, + "m_DisplayName": "Edge1", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Edge1", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "372065c245bd4332b3b5657e99fc7e24", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.ScreenPositionNode", + "m_ObjectId": "3801df7c41264a86b150ba1a85e36339", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Screen Position", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4208.00048828125, + "y": 1651.0001220703125, + "width": 208.0, + "height": 313.0001220703125 + } + }, + "m_Slots": [ + { + "m_Id": "ab03c6afa16540f1822b3564477d2197" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_ScreenSpaceType": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "39bec63f5b614fb28d92e307ffd3bb17", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -965.9999389648438, + "y": 1870.0001220703125, + "width": 208.0001220703125, + "height": 302.0003662109375 + } + }, + "m_Slots": [ + { + "m_Id": "df8d5b720b10492580a798e7775b8ba5" + }, + { + "m_Id": "90e2ac926aff46f8a077ec71ee5dd312" + }, + { + "m_Id": "6dc5a0bb2c3b4c5b8f039568f6192f1b" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "3b22914e4f854fd8906813c1ea168390", + "m_Id": 1, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "3fad817e3118457fa950440491819547", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2594.000244140625, + "y": 1651.0001220703125, + "width": 208.0, + "height": 302.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "372065c245bd4332b3b5657e99fc7e24" + }, + { + "m_Id": "6469604e1fe84c188a127acda7da08b0" + }, + { + "m_Id": "4a9ea88b1b444ccc9eef54bc91bf2077" + } + ], + "synonyms": [ + "division", + "divided by" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -1400,6 +2528,54 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "444b48c14ce247c29415240dddd7db2e", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", @@ -1415,6 +2591,54 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "45f2375d995d4ac7b7a0233cb735f858", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.BranchNode", @@ -1427,10 +2651,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1014.9998168945313, - "y": -22.999980926513673, - "width": 207.99993896484376, - "height": 325.9999694824219 + "x": -1740.000244140625, + "y": -301.0, + "width": 208.0, + "height": 326.0 } }, "m_Slots": [ @@ -1473,10 +2697,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -2139.000244140625, - "y": 1256.0001220703125, - "width": 208.0001220703125, - "height": 302.0 + "x": -2833.0, + "y": 1010.9999389648438, + "width": 208.0, + "height": 302.00018310546877 } }, "m_Slots": [ @@ -1527,6 +2751,116 @@ "m_Channel": 0 } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "496a77f909594128b50d6439a6a5921b", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.CameraNode", + "m_ObjectId": "497a70afa7af4313903572a58df8d434", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Camera", + "m_DrawState": { + "m_Expanded": false, + "m_Position": { + "serializedVersion": "2", + "x": -3656.00048828125, + "y": 2356.000244140625, + "width": 91.0, + "height": 101.0 + } + }, + "m_Slots": [ + { + "m_Id": "e28a106c1f8e404881df40074fbccce1" + }, + { + "m_Id": "a6d3985b737e4e26923b659e0b7cffd3" + }, + { + "m_Id": "90e5eef1b63d43bea29cbc89f2761bac" + }, + { + "m_Id": "b18b8754eff243e7bc833f199bcd86ce" + }, + { + "m_Id": "d13a9c6ab4354d04b7627a9f803a358c" + }, + { + "m_Id": "117417fd3dc14d999bea702d054bf3fe" + }, + { + "m_Id": "ad4e9c2005fc43bea5f5a7d926f3fa88" + }, + { + "m_Id": "a11a5a601a5a49149d779f7b2bd99445" + } + ], + "synonyms": [ + "position", + "direction", + "orthographic", + "near plane", + "far plane", + "width", + "height" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -1551,6 +2885,99 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4a9ea88b1b444ccc9eef54bc91bf2077", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "4b85560ed9df4478a1a2d726886e3131", + "m_Id": 1, + "m_DisplayName": "Tiling", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Tiling", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4c3085e34bf544b38a0cab672a3a3a12", + "m_Id": 2, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "4db8e01a535445d0a6c1e50ead9ad2fa", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -1575,6 +3002,65 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SmoothstepNode", + "m_ObjectId": "5057b3a991b546c2915f07aff660e2d2", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Smoothstep", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1329.000244140625, + "y": 1868.000244140625, + "width": 208.0001220703125, + "height": 326.0 + } + }, + "m_Slots": [ + { + "m_Id": "3705acc0108a44f5ba9cf60c4ee2cee3" + }, + { + "m_Id": "f7b903fbd7af4c6c89823f2109403d17" + }, + { + "m_Id": "4c3085e34bf544b38a0cab672a3a3a12" + }, + { + "m_Id": "300ef5b5a67847069dfec2902ef60a9b" + } + ], + "synonyms": [ + "curve" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "50c0a5a4ae614aa08bf3c320039ed5a6", + "m_Id": 0, + "m_DisplayName": "Smoothness", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + { "m_SGVersion": 2, "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalLitSubTarget", @@ -1585,6 +3071,45 @@ "m_BlendModePreserveSpecular": true } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "55ee3e80063a45dc83fc57190d47f099", + "m_Id": 1, + "m_DisplayName": "X", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "X", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "591c5e002b1c484a9068d6f27b8a73dc", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.PropertyNode", @@ -1597,10 +3122,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1176.000244140625, - "y": 1188.0, - "width": 131.000244140625, - "height": 34.0001220703125 + "x": -1870.0001220703125, + "y": 942.9999389648438, + "width": 131.0, + "height": 34.00006103515625 } }, "m_Slots": [ @@ -1633,10 +3158,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1700.000244140625, - "y": 1256.0001220703125, - "width": 208.0001220703125, - "height": 302.0 + "x": -2394.0, + "y": 1010.9999389648438, + "width": 208.0, + "height": 302.00018310546877 } }, "m_Slots": [ @@ -1660,6 +3185,74 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot", + "m_ObjectId": "5ead021970364fa1af3a2bedab2d9736", + "m_Id": 0, + "m_DisplayName": "UV", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "UV", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [], + "m_Channel": 0 +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BranchNode", + "m_ObjectId": "5f5491eeb841419b87280693ff62e890", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Branch", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -221.99993896484376, + "y": 942.9999389648438, + "width": 207.9999237060547, + "height": 326.00006103515627 + } + }, + "m_Slots": [ + { + "m_Id": "681c67b759694e2ea7f40c71db8ea59d" + }, + { + "m_Id": "757de0dc179d49a992951dfadef71b88" + }, + { + "m_Id": "dfeb22e341de4a8ba78f27f5214e448e" + }, + { + "m_Id": "2b892fefa4174295a9d04174ed04b569" + } + ], + "synonyms": [ + "switch", + "if", + "else" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", @@ -1687,10 +3280,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1004.0001831054688, - "y": 1089.0001220703125, - "width": 208.0001220703125, - "height": 301.9998779296875 + "x": -1698.0, + "y": 843.9999389648438, + "width": 208.0, + "height": 302.00018310546877 } }, "m_Slots": [ @@ -1748,14 +3341,227 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "62037b8890bb4b6f9bf279099f61fbf0", + "m_Id": 2, + "m_DisplayName": "Y", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Y", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [ + "Y" + ] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "634e0245d9164687989aa89e531b4ebd", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3312.00048828125, + "y": 1651.0001220703125, + "width": 208.000244140625, + "height": 302.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "36b7f9536dbe4767afe98b2e4e2081fb" + }, + { + "m_Id": "496a77f909594128b50d6439a6a5921b" + }, + { + "m_Id": "d449279fab06405b88226baac7e20181" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.AddNode", + "m_ObjectId": "644e5a6ffba8445aacb404c0c2434974", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Add", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3982.00048828125, + "y": 2030.000244140625, + "width": 208.000244140625, + "height": 302.0 + } + }, + "m_Slots": [ + { + "m_Id": "fef20b1642c84123b40210671db8f30d" + }, + { + "m_Id": "a668ce18233e44118ba88f504db6e508" + }, + { + "m_Id": "b4742847e72c4195b9b05bcb18988959" + } + ], + "synonyms": [ + "addition", + "sum", + "plus" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "6469604e1fe84c188a127acda7da08b0", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 2.0, + "y": 2.0, + "z": 2.0, + "w": 2.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "681c67b759694e2ea7f40c71db8ea59d", + "m_Id": 0, + "m_DisplayName": "Predicate", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Predicate", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2Node", + "m_ObjectId": "68693fe6e7794e7ea5807cd44209acd4", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Vector 2", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2931.00048828125, + "y": 2373.000244140625, + "width": 128.000244140625, + "height": 101.0 + } + }, + "m_Slots": [ + { + "m_Id": "55ee3e80063a45dc83fc57190d47f099" + }, + { + "m_Id": "62037b8890bb4b6f9bf279099f61fbf0" + }, + { + "m_Id": "2e35640e1737472f8a075fe3c6eb5d60" + } + ], + "synonyms": [ + "2", + "v2", + "vec2", + "float2" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Value": { + "x": 0.0, + "y": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "68c4126746e142e7a1ed18ac9f3723c0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.GroupData", "m_ObjectId": "6b91136343e54196a9335ae1e611082e", "m_Title": "Dissolve", "m_Position": { - "x": -2310.000244140625, - "y": 737.9998779296875 + "x": -3004.000244140625, + "y": 491.0000915527344 } } @@ -1789,6 +3595,54 @@ "m_DefaultType": 0 } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "6dc5a0bb2c3b4c5b8f039568f6192f1b", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -1813,6 +3667,54 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "71ae6e89e3584ef0832d6e2192b9500f", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot", @@ -1837,6 +3739,68 @@ "m_Space": 0 } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "757de0dc179d49a992951dfadef71b88", + "m_Id": 1, + "m_DisplayName": "True", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "True", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.LengthNode", + "m_ObjectId": "763767978d79449daea3cefde5d819f3", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Length", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2276.00048828125, + "y": 1651.0001220703125, + "width": 208.000244140625, + "height": 278.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "bb257fca1c8a4edc8a51b5e97b7929d4" + }, + { + "m_Id": "d58021b897d8475dac012177a772e931" + } + ], + "synonyms": [ + "measure" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", @@ -1880,6 +3844,42 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "77b45989211247058dd78f6dcf2a293e", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3277.000244140625, + "y": 2440.000244140625, + "width": 96.999755859375, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "1796e92ffbbd4a43a9403baef759aa6f" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "9d7f6939db644c6fb575cb3e0bb919b9" + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", @@ -1905,6 +3905,54 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "7c3db634ce554557bb2483efdf6c515c", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", @@ -1990,10 +4038,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1626.999755859375, - "y": 171.0, + "x": -2352.000244140625, + "y": -107.0000228881836, "width": 208.0, - "height": 435.0 + "height": 435.00006103515627 } }, "m_Slots": [ @@ -2038,6 +4086,72 @@ "m_MipSamplingMode": 0 } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "84e076126d71492a9575ddc311b426a0", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DivideNode", + "m_ObjectId": "8babc85160e141bf82965cfe7d448dca", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Divide", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3488.000244140625, + "y": 2356.000244140625, + "width": 207.999755859375, + "height": 302.0 + } + }, + "m_Slots": [ + { + "m_Id": "68c4126746e142e7a1ed18ac9f3723c0" + }, + { + "m_Id": "0c3f536562d241e6a910acfca374c653" + }, + { + "m_Id": "591c5e002b1c484a9068d6f27b8a73dc" + } + ], + "synonyms": [ + "division", + "divided by" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", @@ -2101,6 +4215,69 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "90e2ac926aff46f8a077ec71ee5dd312", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "e00": 2.0, + "e01": 2.0, + "e02": 2.0, + "e03": 2.0, + "e10": 2.0, + "e11": 2.0, + "e12": 2.0, + "e13": 2.0, + "e20": 2.0, + "e21": 2.0, + "e22": 2.0, + "e23": 2.0, + "e30": 2.0, + "e31": 2.0, + "e32": 2.0, + "e33": 2.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "90e5eef1b63d43bea29cbc89f2761bac", + "m_Id": 2, + "m_DisplayName": "Orthographic", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Orthographic", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + { "m_SGVersion": 3, "m_Type": "UnityEditor.ShaderGraph.Internal.ColorShaderProperty", @@ -2131,6 +4308,49 @@ "m_ColorMode": 1 } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "9640be9ed98f42dda255e8706c7749fe", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -472.9999694824219, + "y": 1349.0, + "width": 207.99990844726563, + "height": 301.9998779296875 + } + }, + "m_Slots": [ + { + "m_Id": "0b4b506f5c52469aac37b061126b859c" + }, + { + "m_Id": "71ae6e89e3584ef0832d6e2192b9500f" + }, + { + "m_Id": "7c3db634ce554557bb2483efdf6c515c" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.BlockNode", @@ -2180,6 +4400,86 @@ "m_Labels": [] } +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector2ShaderProperty", + "m_ObjectId": "9c91c2823f58454f89bbdbe24b31256b", + "m_Guid": { + "m_GuidSerialized": "3a25f229-8df4-49d7-ad07-93e266693c8e" + }, + "m_Name": "PlayerPosition", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "PlayerPosition", + "m_DefaultReferenceName": "_PlayerPosition", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": { + "x": 0.5, + "y": 0.5, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "9d7f6939db644c6fb575cb3e0bb919b9", + "m_Guid": { + "m_GuidSerialized": "08584c66-be49-4da0-a91f-d98845f7012c" + }, + "m_Name": "Size", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Size", + "m_DefaultReferenceName": "_Size", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 1.0, + "m_FloatType": 0, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "9f48240b7adc44aab30c80c8b6df3d59", + "m_Id": 1, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", @@ -2229,6 +4529,57 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "a11a5a601a5a49149d779f7b2bd99445", + "m_Id": 7, + "m_DisplayName": "Height", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Height", + "m_StageCapability": 3, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "a286bace7ffd4c5290bca8a37227f8d7", + "m_Group": { + "m_Id": "" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -221.99993896484376, + "y": 909.0, + "width": 146.99996948242188, + "height": 33.99993896484375 + } + }, + "m_Slots": [ + { + "m_Id": "eabced310bdb42379b980860dccb821e" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "b2aed905ceb54037a8f5fc1f577ef040" + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.BlockNode", @@ -2263,6 +4614,17 @@ "m_SerializedDescriptor": "VertexDescription.Tangent" } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.GroupData", + "m_ObjectId": "a2a8edcaa0644ee8bebe65880853fec5", + "m_Title": "See Through", + "m_Position": { + "x": 10.0, + "y": 10.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.BlockNode", @@ -2312,6 +4674,74 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "a668ce18233e44118ba88f504db6e508", + "m_Id": 1, + "m_DisplayName": "B", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "B", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "a6af290623ae43c2b64fd3b60f8a3f8f", + "m_Id": 3, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "a6d3985b737e4e26923b659e0b7cffd3", + "m_Id": 1, + "m_DisplayName": "Direction", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Direction", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot", @@ -2344,6 +4774,31 @@ "m_DefaultValue": false } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot", + "m_ObjectId": "ab03c6afa16540f1822b3564477d2197", + "m_Id": 0, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.BlockNode", @@ -2378,6 +4833,21 @@ "m_SerializedDescriptor": "SurfaceDescription.BaseColor" } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "ad4e9c2005fc43bea5f5a7d926f3fa88", + "m_Id": 6, + "m_DisplayName": "Width", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Width", + "m_StageCapability": 3, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -2414,10 +4884,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1415.000244140625, - "y": 1089.0001220703125, + "x": -2109.000244140625, + "y": 843.9999389648438, "width": 208.000244140625, - "height": 301.9998779296875 + "height": 302.00018310546877 } }, "m_Slots": [ @@ -2461,6 +4931,171 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b18b8754eff243e7bc833f199bcd86ce", + "m_Id": 3, + "m_DisplayName": "Near Plane", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Near Plane", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", + "m_ObjectId": "b2aed905ceb54037a8f5fc1f577ef040", + "m_Guid": { + "m_GuidSerialized": "e0f0d56b-4274-4425-8371-7e33fa866383" + }, + "m_Name": "IsSeeThrough", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "IsSeeThrough", + "m_DefaultReferenceName": "_IsSeeThrough", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": false +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "b4742847e72c4195b9b05bcb18988959", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "b583743c039444318849b1380a0fe5d5", + "m_Id": 0, + "m_DisplayName": "Opacity", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", + "m_ObjectId": "b8c90ecbd90748e29a355fa69a8cf5d6", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Multiply", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3180.00048828125, + "y": 2356.000244140625, + "width": 208.000244140625, + "height": 302.0 + } + }, + "m_Slots": [ + { + "m_Id": "f6016e91daf1405f881fd06400f106ca" + }, + { + "m_Id": "45f2375d995d4ac7b7a0233cb735f858" + }, + { + "m_Id": "444b48c14ce247c29415240dddd7db2e" + } + ], + "synonyms": [ + "multiplication", + "times", + "x" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "bb257fca1c8a4edc8a51b5e97b7929d4", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "bbfd676a3d774f539635a07bb6187537", + "m_Id": 2, + "m_DisplayName": "Out Min Max", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "OutMinMax", + "m_StageCapability": 3, + "m_Value": { + "x": 0.5, + "y": -1.5 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -2510,10 +5145,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -2285.000244140625, - "y": 1320.0001220703125, + "x": -2979.000244140625, + "y": 1075.0, "width": 123.000244140625, - "height": 34.0 + "height": 34.0001220703125 } }, "m_Slots": [ @@ -2621,6 +5256,54 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "c4b82b67aede408dbbde8aa51d9911f2", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": -1.0, + "y": -1.0, + "z": -1.0, + "w": -1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "c4fb55c1635e43d88f9d4483bdfd52cb", + "m_Id": 0, + "m_DisplayName": "In", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "In", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.PropertyNode", @@ -2633,10 +5316,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1309.999755859375, - "y": -33.999996185302737, + "x": -2035.0001220703125, + "y": -312.0, "width": 105.0, - "height": 34.0000114440918 + "height": 34.0 } }, "m_Slots": [ @@ -2691,6 +5374,51 @@ "m_SerializedDescriptor": "VertexDescription.Position" } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.TilingAndOffsetNode", + "m_ObjectId": "c9fa640439fd49aa8b312108bb915b69", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Tiling And Offset", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3670.00048828125, + "y": 1651.0001220703125, + "width": 208.000244140625, + "height": 326.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "5ead021970364fa1af3a2bedab2d9736" + }, + { + "m_Id": "4b85560ed9df4478a1a2d726886e3131" + }, + { + "m_Id": "ef559029755f4582b036c552bc706a7c" + }, + { + "m_Id": "a6af290623ae43c2b64fd3b60f8a3f8f" + } + ], + "synonyms": [ + "pan", + "scale" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", @@ -2703,10 +5431,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -523.9998779296875, - "y": 606.9999389648438, - "width": 207.99993896484376, - "height": 301.99993896484377 + "x": -706.9998779296875, + "y": 608.9999389648438, + "width": 208.00006103515626, + "height": 302.0 } }, "m_Slots": [ @@ -2763,6 +5491,21 @@ }, { "m_Id": "937dbd531b2045c8966857c7e7de4656" + }, + { + "m_Id": "b2aed905ceb54037a8f5fc1f577ef040" + }, + { + "m_Id": "9c91c2823f58454f89bbdbe24b31256b" + }, + { + "m_Id": "9d7f6939db644c6fb575cb3e0bb919b9" + }, + { + "m_Id": "feebbb50dab94029835a47bc848e9929" + }, + { + "m_Id": "ec9d7af63e714530b9a1403da591d291" } ] } @@ -2797,6 +5540,21 @@ "m_ColorMode": 0 } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d13a9c6ab4354d04b7627a9f803a358c", + "m_Id": 4, + "m_DisplayName": "Far Plane", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Far Plane", + "m_StageCapability": 3, + "m_Value": 1.0, + "m_DefaultValue": 1.0, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -2821,6 +5579,69 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "d449279fab06405b88226baac7e20181", + "m_Id": 2, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot", + "m_ObjectId": "d58021b897d8475dac012177a772e931", + "m_Id": 1, + "m_DisplayName": "Out", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": 0.0, + "m_DefaultValue": 0.0, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.MultiplyNode", @@ -2833,10 +5654,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -1309.999755859375, - "y": 0.0000152587890625, - "width": 208.0, - "height": 302.0 + "x": -2035.0001220703125, + "y": -278.0, + "width": 208.0001220703125, + "height": 301.9999694824219 } }, "m_Slots": [ @@ -2925,6 +5746,42 @@ "m_BareResource": false } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "db8999654cf6454ea257a997af207110", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -3898.000244140625, + "y": 2060.000244140625, + "width": 150.999755859375, + "height": 34.0 + } + }, + "m_Slots": [ + { + "m_Id": "251288be56444c06846e7b7f4c89af28" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "9c91c2823f58454f89bbdbe24b31256b" + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -2997,6 +5854,78 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "df8d5b720b10492580a798e7775b8ba5", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "dfeb22e341de4a8ba78f27f5214e448e", + "m_Id": 2, + "m_DisplayName": "False", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "False", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -3045,6 +5974,29 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot", + "m_ObjectId": "e28a106c1f8e404881df40074fbccce1", + "m_Id": 0, + "m_DisplayName": "Position", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Position", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "m_Labels": [] +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", @@ -3093,6 +6045,46 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.OneMinusNode", + "m_ObjectId": "e3c4060fc6a44f6d9dd0ef3dac00a941", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "One Minus", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -707.0003051757813, + "y": 1870.0001220703125, + "width": 208.0001220703125, + "height": 277.9998779296875 + } + }, + "m_Slots": [ + { + "m_Id": "1f6341f3c7d5430abdfd104bde06b087" + }, + { + "m_Id": "28c6aec3cab445fcbaf3997d5c8c705f" + } + ], + "synonyms": [ + "complement", + "invert", + "opposite" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", @@ -3141,6 +6133,42 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.PropertyNode", + "m_ObjectId": "e73ce72a402c47b8864ab202e05d98ea", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Property", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1101.0001220703125, + "y": 1953.0003662109375, + "width": 115.9998779296875, + "height": 33.9998779296875 + } + }, + "m_Slots": [ + { + "m_Id": "b583743c039444318849b1380a0fe5d5" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + }, + "m_Property": { + "m_Id": "ec9d7af63e714530b9a1403da591d291" + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", @@ -3228,6 +6256,48 @@ "m_Labels": [] } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.BooleanMaterialSlot", + "m_ObjectId": "eabced310bdb42379b980860dccb821e", + "m_Id": 0, + "m_DisplayName": "IsSeeThrough", + "m_SlotType": 1, + "m_Hidden": false, + "m_ShaderOutputName": "Out", + "m_StageCapability": 3, + "m_Value": false, + "m_DefaultValue": false +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "ec9d7af63e714530b9a1403da591d291", + "m_Guid": { + "m_GuidSerialized": "0f58591f-a374-459a-84be-871d416b9016" + }, + "m_Name": "Opacity", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Opacity", + "m_DefaultReferenceName": "_Opacity", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 1.0, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.Internal.BooleanShaderProperty", @@ -3251,6 +6321,67 @@ "m_Value": false } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot", + "m_ObjectId": "ef559029755f4582b036c552bc706a7c", + "m_Id": 2, + "m_DisplayName": "Offset", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Offset", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0 + }, + "m_Labels": [] +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.OneMinusNode", + "m_ObjectId": "f3f376136c9e4ccaba13ef990f582962", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "One Minus", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -1985.00048828125, + "y": 1651.0001220703125, + "width": 208.0001220703125, + "height": 278.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "1ebf80dc196444eb98572cb0d9b69eb5" + }, + { + "m_Id": "3b22914e4f854fd8906813c1ea168390" + } + ], + "synonyms": [ + "complement", + "invert", + "opposite" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot", @@ -3309,6 +6440,54 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot", + "m_ObjectId": "f6016e91daf1405f881fd06400f106ca", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "e00": 0.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 0.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 0.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 0.0 + }, + "m_DefaultValue": { + "e00": 1.0, + "e01": 0.0, + "e02": 0.0, + "e03": 0.0, + "e10": 0.0, + "e11": 1.0, + "e12": 0.0, + "e13": 0.0, + "e20": 0.0, + "e21": 0.0, + "e22": 1.0, + "e23": 0.0, + "e30": 0.0, + "e31": 0.0, + "e32": 0.0, + "e33": 1.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -3333,6 +6512,30 @@ } } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "f7b903fbd7af4c6c89823f2109403d17", + "m_Id": 1, + "m_DisplayName": "Edge2", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "Edge2", + "m_StageCapability": 3, + "m_Value": { + "x": 1.0, + "y": 1.0, + "z": 1.0, + "w": 1.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", @@ -3451,10 +6654,10 @@ "m_Expanded": true, "m_Position": { "serializedVersion": "2", - "x": -2139.000244140625, - "y": 1222.0001220703125, - "width": 147.0, - "height": 34.0 + "x": -2833.0, + "y": 977.0, + "width": 146.999755859375, + "height": 33.99993896484375 } }, "m_Slots": [ @@ -3499,14 +6702,152 @@ "m_Space": 0 } +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.RemapNode", + "m_ObjectId": "fcd8e49808ec4130a84b3c18db5a6162", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Remap", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -4230.00048828125, + "y": 2030.000244140625, + "width": 208.000244140625, + "height": 326.0 + } + }, + "m_Slots": [ + { + "m_Id": "c4b82b67aede408dbbde8aa51d9911f2" + }, + { + "m_Id": "315357758f4b4dc5a00a066b5011d08d" + }, + { + "m_Id": "bbfd676a3d774f539635a07bb6187537" + }, + { + "m_Id": "367081f0ff00461bb9ce71e13c38de33" + } + ], + "synonyms": [], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + { "m_SGVersion": 0, "m_Type": "UnityEditor.ShaderGraph.GroupData", "m_ObjectId": "fd5e8e60431f458daba39ff2b1e2387e", "m_Title": "Flash", "m_Position": { - "x": 10.0, - "y": 10.0 + "x": -2377.000244140625, + "y": -394.0000305175781 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.SubtractNode", + "m_ObjectId": "fe03b847a83e4aff906c6327727bd9bb", + "m_Group": { + "m_Id": "a2a8edcaa0644ee8bebe65880853fec5" + }, + "m_Name": "Subtract", + "m_DrawState": { + "m_Expanded": true, + "m_Position": { + "serializedVersion": "2", + "x": -2951.000244140625, + "y": 1651.0001220703125, + "width": 208.0, + "height": 302.000244140625 + } + }, + "m_Slots": [ + { + "m_Id": "84e076126d71492a9575ddc311b426a0" + }, + { + "m_Id": "03d675a76f0e40cb971726c971da253d" + }, + { + "m_Id": "4db8e01a535445d0a6c1e50ead9ad2fa" + } + ], + "synonyms": [ + "subtraction", + "remove", + "minus", + "take away" + ], + "m_Precision": 0, + "m_PreviewExpanded": true, + "m_DismissedVersion": 0, + "m_PreviewMode": 0, + "m_CustomColors": { + "m_SerializableColors": [] + } +} + +{ + "m_SGVersion": 1, + "m_Type": "UnityEditor.ShaderGraph.Internal.Vector1ShaderProperty", + "m_ObjectId": "feebbb50dab94029835a47bc848e9929", + "m_Guid": { + "m_GuidSerialized": "15c30a6a-82a8-46e0-9ce4-e6e85ce656ca" + }, + "m_Name": "Smoothness", + "m_DefaultRefNameVersion": 1, + "m_RefNameGeneratedByDisplayName": "Smoothness", + "m_DefaultReferenceName": "_Smoothness", + "m_OverrideReferenceName": "", + "m_GeneratePropertyBlock": true, + "m_UseCustomSlotLabel": false, + "m_CustomSlotLabel": "", + "m_DismissedVersion": 0, + "m_Precision": 0, + "overrideHLSLDeclaration": false, + "hlslDeclarationOverride": 0, + "m_Hidden": false, + "m_Value": 0.5, + "m_FloatType": 1, + "m_RangeValues": { + "x": 0.0, + "y": 1.0 + } +} + +{ + "m_SGVersion": 0, + "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot", + "m_ObjectId": "fef20b1642c84123b40210671db8f30d", + "m_Id": 0, + "m_DisplayName": "A", + "m_SlotType": 0, + "m_Hidden": false, + "m_ShaderOutputName": "A", + "m_StageCapability": 3, + "m_Value": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 + }, + "m_DefaultValue": { + "x": 0.0, + "y": 0.0, + "z": 0.0, + "w": 0.0 } } diff --git a/Assets/UniversalRenderPipelineGlobalSettings.asset b/Assets/UniversalRenderPipelineGlobalSettings.asset index afa39f7b0..65f89e941 100644 --- a/Assets/UniversalRenderPipelineGlobalSettings.asset +++ b/Assets/UniversalRenderPipelineGlobalSettings.asset @@ -36,24 +36,24 @@ MonoBehaviour: - rid: 5032277253446697243 - rid: 5032277253446697244 - rid: 5032277253446697245 - - rid: 7789284751261565237 + - rid: 7789284894475288580 - rid: 5032277253446697247 - rid: 5032277253446697248 - - rid: 7789284751261565238 - - rid: 7789284751261565239 + - rid: 7789284894475288581 + - rid: 7789284894475288582 - rid: 5032277253446697251 - - rid: 7789284751261565240 + - rid: 7789284894475288583 - rid: 5032277253446697253 - - rid: 7789284751261565241 + - rid: 7789284894475288584 - rid: 5032277253446697255 - - rid: 7789284751261565242 - - rid: 7789284751261565243 + - rid: 7789284894475288585 + - rid: 7789284894475288586 - rid: 5032277253446697258 - rid: 5032277253446697259 - - rid: 7789284751261565244 - - rid: 7789284751261565245 + - rid: 7789284894475288587 + - rid: 7789284894475288588 - rid: 5032277253446697262 - - rid: 7789284751261565246 + - rid: 7789284894475288589 m_RuntimeSettings: m_List: - rid: 5032277253446697243 @@ -159,7 +159,7 @@ MonoBehaviour: m_version: 0 m_EnableCompilationCaching: 1 m_EnableValidityChecks: 1 - - rid: 7789284751261565237 + - rid: 7789284894475288580 type: {class: Renderer2DResources, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} data: m_Version: 0 @@ -174,14 +174,14 @@ MonoBehaviour: m_DefaultLitMaterial: {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2} m_DefaultUnlitMaterial: {fileID: 2100000, guid: 9dfc825aed78fcd4ba02077103263b40, type: 2} m_DefaultMaskMaterial: {fileID: 2100000, guid: 15d0c3709176029428a0da2f8cecf0b5, type: 2} - - rid: 7789284751261565238 + - rid: 7789284894475288581 type: {class: URPShaderStrippingSetting, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} data: m_Version: 0 m_StripUnusedPostProcessingVariants: 0 m_StripUnusedVariants: 1 m_StripScreenCoordOverrideVariants: 1 - - rid: 7789284751261565239 + - rid: 7789284894475288582 type: {class: UniversalRenderPipelineEditorMaterials, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} data: m_DefaultMaterial: {fileID: 2100000, guid: 31321ba15b8f8eb4c954353edc038b1d, type: 2} @@ -189,7 +189,7 @@ MonoBehaviour: m_DefaultLineMaterial: {fileID: 2100000, guid: e823cd5b5d27c0f4b8256e7c12ee3e6d, type: 2} m_DefaultTerrainMaterial: {fileID: 2100000, guid: 594ea882c5a793440b60ff72d896021e, type: 2} m_DefaultDecalMaterial: {fileID: 2100000, guid: 31d0dcc6f2dd4e4408d18036a2c93862, type: 2} - - rid: 7789284751261565240 + - rid: 7789284894475288583 type: {class: UniversalRenderPipelineEditorShaders, ns: UnityEngine.Rendering.Universal, asm: Unity.RenderPipelines.Universal.Runtime} data: m_AutodeskInteractive: {fileID: 4800000, guid: 0e9d5a909a1f7e84882a534d0d11e49f, type: 3} @@ -201,7 +201,7 @@ MonoBehaviour: m_DefaultSpeedTree7Shader: {fileID: 4800000, guid: 0f4122b9a743b744abe2fb6a0a88868b, type: 3} m_DefaultSpeedTree8Shader: {fileID: -6465566751694194690, guid: 9920c1f1781549a46ba081a2a15a16ec, type: 3} m_DefaultSpeedTree9Shader: {fileID: -6465566751694194690, guid: cbd3e1cc4ae141c42a30e33b4d666a61, type: 3} - - rid: 7789284751261565241 + - rid: 7789284894475288584 type: {class: GPUResidentDrawerResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.GPUDriven.Runtime} data: m_Version: 0 @@ -214,7 +214,7 @@ MonoBehaviour: m_OcclusionCullingDebugKernels: {fileID: 7200000, guid: b23e766bcf50ca4438ef186b174557df, type: 3} m_DebugOcclusionTestPS: {fileID: 4800000, guid: d3f0849180c2d0944bc71060693df100, type: 3} m_DebugOccluderPS: {fileID: 4800000, guid: b3c92426a88625841ab15ca6a7917248, type: 3} - - rid: 7789284751261565242 + - rid: 7789284894475288585 type: {class: ProbeVolumeDebugResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} data: m_Version: 1 @@ -224,7 +224,7 @@ MonoBehaviour: probeVolumeOffsetDebugShader: {fileID: 4800000, guid: db8bd7436dc2c5f4c92655307d198381, type: 3} probeSamplingDebugMesh: {fileID: -3555484719484374845, guid: 20be25aac4e22ee49a7db76fb3df6de2, type: 3} numbersDisplayTex: {fileID: 2800000, guid: 73fe53b428c5b3440b7e87ee830b608a, type: 3} - - rid: 7789284751261565243 + - rid: 7789284894475288586 type: {class: ProbeVolumeBakingResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} data: m_Version: 1 @@ -237,19 +237,19 @@ MonoBehaviour: skyOcclusionRT: {fileID: 4807578003741378534, guid: dfaf42b38dd001f49a72d8102b709f29, type: 3} renderingLayerCS: {fileID: 7200000, guid: a63c9cf933e3d8f41ae680a372784ebf, type: 3} renderingLayerRT: {fileID: 4807578003741378534, guid: c2be09c936362eb49a58f08aeb30627a, type: 3} - - rid: 7789284751261565244 + - rid: 7789284894475288587 type: {class: ProbeVolumeGlobalSettings, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} data: m_Version: 1 m_ProbeVolumeDisableStreamingAssets: 0 - - rid: 7789284751261565245 + - rid: 7789284894475288588 type: {class: ProbeVolumeRuntimeResources, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} data: m_Version: 1 probeVolumeBlendStatesCS: {fileID: 7200000, guid: a3f7b8c99de28a94684cb1daebeccf5d, type: 3} probeVolumeUploadDataCS: {fileID: 7200000, guid: 0951de5992461754fa73650732c4954c, type: 3} probeVolumeUploadDataL2CS: {fileID: 7200000, guid: 6196f34ed825db14b81fb3eb0ea8d931, type: 3} - - rid: 7789284751261565246 + - rid: 7789284894475288589 type: {class: IncludeAdditionalRPAssets, ns: UnityEngine.Rendering, asm: Unity.RenderPipelines.Core.Runtime} data: m_version: 0 diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index cd4c52466..336e19615 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -140,7 +140,7 @@ PlayerSettings: loadStoreDebugModeEnabled: 0 visionOSBundleVersion: 1.0 tvOSBundleVersion: 1.0 - bundleVersion: 0.2.2.0 + bundleVersion: 0.2.2.1 preloadedAssets: - {fileID: -944628639613478452, guid: 4ed6540e2f7ce234888adf8deff1f241, type: 3} metroInputSource: 0