123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815 |
- {
- "m_SGVersion": 3,
- "m_Type": "UnityEditor.ShaderGraph.GraphData",
- "m_ObjectId": "12de96ac5ca046b99e32aae2bf6dc24f",
- "m_Properties": [],
- "m_Keywords": [],
- "m_Dropdowns": [],
- "m_CategoryData": [
- {
- "m_Id": "43e705b46d2a4a418f686aab6b639660"
- }
- ],
- "m_Nodes": [
- {
- "m_Id": "ada70a76d843491683ea0ff08dfe402e"
- },
- {
- "m_Id": "96a128f64c86473dab38d058e778bd62"
- },
- {
- "m_Id": "a954e08fa95a4df49d9610c55068597d"
- },
- {
- "m_Id": "180aeb57fedb4f5986d7ff19b4b4954c"
- },
- {
- "m_Id": "d43a36e7cf7141d8b0012fdea8929490"
- },
- {
- "m_Id": "cb1f56d896f74d3286d9a8e920a3b64d"
- },
- {
- "m_Id": "11f4593d04ea4b49bc71163fbc219120"
- },
- {
- "m_Id": "f3fbe06b69644d3dacfa545eff5a8477"
- },
- {
- "m_Id": "55c4753943e946c589faa331b16d6f39"
- },
- {
- "m_Id": "a4a5ec5d105f4a97b0eed01316e02e4a"
- },
- {
- "m_Id": "eccf9407845a4e90aa52cb96d02caff9"
- },
- {
- "m_Id": "46b2e48810544ab68559d3268149a01f"
- },
- {
- "m_Id": "8074ac20fd854d15a1a1867e60146a97"
- },
- {
- "m_Id": "596c57ce97f84bb29d4fd12d9331f92c"
- },
- {
- "m_Id": "983d93b86ac04e8f9727cd4678184a65"
- },
- {
- "m_Id": "9e46674d480343fe8bbfa12d82432765"
- }
- ],
- "m_GroupDatas": [
- {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- },
- {
- "m_Id": "ee49b28c1a5d4105b41353c02e7ee4d0"
- }
- ],
- "m_StickyNoteDatas": [
- {
- "m_Id": "80c59d1968a445bf91987a334adf3562"
- },
- {
- "m_Id": "0020efc3a6c3416aa7da36bca21d88a2"
- },
- {
- "m_Id": "c152205b87dd4160bb4f7b878650f790"
- },
- {
- "m_Id": "0bd02439f57346aba74d52d01bbd6776"
- },
- {
- "m_Id": "43f39c0866bd4037b2c4a7ae4a9dca9e"
- },
- {
- "m_Id": "ffc488a52b6240d0a2dabcb8dc4e1908"
- }
- ],
- "m_Edges": [
- {
- "m_OutputSlot": {
- "m_Node": {
- "m_Id": "11f4593d04ea4b49bc71163fbc219120"
- },
- "m_SlotId": 1
- },
- "m_InputSlot": {
- "m_Node": {
- "m_Id": "f3fbe06b69644d3dacfa545eff5a8477"
- },
- "m_SlotId": 0
- }
- },
- {
- "m_OutputSlot": {
- "m_Node": {
- "m_Id": "55c4753943e946c589faa331b16d6f39"
- },
- "m_SlotId": 1
- },
- "m_InputSlot": {
- "m_Node": {
- "m_Id": "a4a5ec5d105f4a97b0eed01316e02e4a"
- },
- "m_SlotId": 0
- }
- },
- {
- "m_OutputSlot": {
- "m_Node": {
- "m_Id": "8074ac20fd854d15a1a1867e60146a97"
- },
- "m_SlotId": 0
- },
- "m_InputSlot": {
- "m_Node": {
- "m_Id": "596c57ce97f84bb29d4fd12d9331f92c"
- },
- "m_SlotId": 0
- }
- },
- {
- "m_OutputSlot": {
- "m_Node": {
- "m_Id": "cb1f56d896f74d3286d9a8e920a3b64d"
- },
- "m_SlotId": 0
- },
- "m_InputSlot": {
- "m_Node": {
- "m_Id": "11f4593d04ea4b49bc71163fbc219120"
- },
- "m_SlotId": 0
- }
- },
- {
- "m_OutputSlot": {
- "m_Node": {
- "m_Id": "eccf9407845a4e90aa52cb96d02caff9"
- },
- "m_SlotId": 0
- },
- "m_InputSlot": {
- "m_Node": {
- "m_Id": "46b2e48810544ab68559d3268149a01f"
- },
- "m_SlotId": 0
- }
- },
- {
- "m_OutputSlot": {
- "m_Node": {
- "m_Id": "f3fbe06b69644d3dacfa545eff5a8477"
- },
- "m_SlotId": 2
- },
- "m_InputSlot": {
- "m_Node": {
- "m_Id": "55c4753943e946c589faa331b16d6f39"
- },
- "m_SlotId": 0
- }
- }
- ],
- "m_VertexContext": {
- "m_Position": {
- "x": 0.0,
- "y": 0.0
- },
- "m_Blocks": [
- {
- "m_Id": "ada70a76d843491683ea0ff08dfe402e"
- },
- {
- "m_Id": "96a128f64c86473dab38d058e778bd62"
- },
- {
- "m_Id": "a954e08fa95a4df49d9610c55068597d"
- }
- ]
- },
- "m_FragmentContext": {
- "m_Position": {
- "x": 0.0,
- "y": 200.0
- },
- "m_Blocks": [
- {
- "m_Id": "180aeb57fedb4f5986d7ff19b4b4954c"
- },
- {
- "m_Id": "983d93b86ac04e8f9727cd4678184a65"
- },
- {
- "m_Id": "9e46674d480343fe8bbfa12d82432765"
- }
- ]
- },
- "m_PreviewData": {
- "serializedMesh": {
- "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
- "m_Guid": ""
- },
- "preventRotation": false
- },
- "m_Path": "Shader Graphs",
- "m_GraphPrecision": 1,
- "m_PreviewMode": 2,
- "m_OutputNode": {
- "m_Id": ""
- },
- "m_ActiveTargets": [
- {
- "m_Id": "b167ce50e81b46fea51fa3cb8f20a732"
- },
- {
- "m_Id": "eaddd6bef44c493b9835e8014dcd2fe1"
- },
- {
- "m_Id": "1d52581e9daa402fa9eebbea0ed33946"
- }
- ]
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
- "m_ObjectId": "0020efc3a6c3416aa7da36bca21d88a2",
- "m_Title": "",
- "m_Content": "The Ceiling node rounds all of the values up to the nearest whole number - giving us 5 distinct bands with the values 1, 2, 3, 4, and 5.",
- "m_TextSize": 0,
- "m_Theme": 0,
- "m_Position": {
- "serializedVersion": "2",
- "x": -706.5000610351563,
- "y": 287.0000305175781,
- "width": 200.00003051757813,
- "height": 100.0
- },
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
- "m_ObjectId": "0bd02439f57346aba74d52d01bbd6776",
- "m_Title": "",
- "m_Content": "We multiply the gradient by 5 so it has a range of 0 to 5.",
- "m_TextSize": 0,
- "m_Theme": 0,
- "m_Position": {
- "serializedVersion": "2",
- "x": -938.0000610351563,
- "y": 303.0000305175781,
- "width": 200.0,
- "height": 100.0
- },
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
- "m_ObjectId": "0cac6fe9db774acea78c565a299c7f4c",
- "m_Id": 1,
- "m_DisplayName": "X",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "X",
- "m_StageCapability": 3,
- "m_Value": 0.30000001192092898,
- "m_DefaultValue": 0.0,
- "m_Labels": []
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "0d731c1df674435d8c8e7bfb46a71383",
- "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": 1,
- "m_Type": "UnityEditor.ShaderGraph.SwizzleNode",
- "m_ObjectId": "11f4593d04ea4b49bc71163fbc219120",
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- },
- "m_Name": "Swizzle",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1202.0,
- "y": 181.00001525878907,
- "width": 208.00006103515626,
- "height": 305.5
- }
- },
- "m_Slots": [
- {
- "m_Id": "89951442e8db4f7bbca543db19ccd205"
- },
- {
- "m_Id": "fe5281b162534886ab2531a6b74e534d"
- }
- ],
- "synonyms": [
- "swap",
- "reorder",
- "component mask"
- ],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "_maskInput": "x",
- "convertedMask": "x"
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "155246ae888048a9b0719f7251bdbea5",
- "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.DynamicVectorMaterialSlot",
- "m_ObjectId": "17bac9e280b443ee8169dd058b9b47b3",
- "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.BlockNode",
- "m_ObjectId": "180aeb57fedb4f5986d7ff19b4b4954c",
- "m_Group": {
- "m_Id": ""
- },
- "m_Name": "SurfaceDescription.BaseColor",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": 0.0,
- "y": 0.0,
- "width": 0.0,
- "height": 0.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "e98686e8000e4a929e15046a32877493"
- }
- ],
- "synonyms": [],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
- }
-
- {
- "m_SGVersion": 2,
- "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
- "m_ObjectId": "1c7ac99444f44e1181342687e5160ad2"
- }
-
- {
- "m_SGVersion": 1,
- "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
- "m_ObjectId": "1d52581e9daa402fa9eebbea0ed33946",
- "m_Datas": [],
- "m_ActiveSubTarget": {
- "m_Id": "1c7ac99444f44e1181342687e5160ad2"
- },
- "m_AllowMaterialOverride": false,
- "m_SurfaceType": 0,
- "m_ZTestMode": 4,
- "m_ZWriteControl": 0,
- "m_AlphaMode": 0,
- "m_RenderFace": 2,
- "m_AlphaClip": false,
- "m_CastShadows": true,
- "m_ReceiveShadows": true,
- "m_AdditionalMotionVectorMode": 0,
- "m_AlembicMotionVectors": false,
- "m_SupportsLODCrossFade": false,
- "m_CustomEditorGUI": "",
- "m_SupportVFX": false
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
- "m_ObjectId": "21d173110f334fb9a0d605e1a3da7419",
- "m_Id": 0,
- "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.DynamicValueMaterialSlot",
- "m_ObjectId": "2a8253ddb22a4469979cbae0936a39d9",
- "m_Id": 1,
- "m_DisplayName": "B",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "B",
- "m_StageCapability": 3,
- "m_Value": {
- "e00": 5.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.Vector4MaterialSlot",
- "m_ObjectId": "2fce626f72b8458baf81def75f615607",
- "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.GroupData",
- "m_ObjectId": "30a7e13a4bec4098b10998774cbdf8fe",
- "m_Title": "Posterization",
- "m_Position": {
- "x": -1372.0,
- "y": 122.50003051757813
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
- "m_ObjectId": "3c85efb361814c7ba80d6d4b09b97f20",
- "m_Distortion": false,
- "m_DistortionMode": 0,
- "m_DistortionDepthTest": true,
- "m_AddPrecomputedVelocity": false,
- "m_TransparentWritesMotionVec": false,
- "m_DepthOffset": false,
- "m_ConservativeDepthOffset": false,
- "m_TransparencyFog": true,
- "m_AlphaTestShadow": false,
- "m_BackThenFrontRendering": false,
- "m_TransparentDepthPrepass": false,
- "m_TransparentDepthPostpass": false,
- "m_TransparentPerPixelSorting": false,
- "m_SupportLodCrossFade": false
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.CategoryData",
- "m_ObjectId": "43e705b46d2a4a418f686aab6b639660",
- "m_Name": "",
- "m_ChildObjectList": []
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
- "m_ObjectId": "43f39c0866bd4037b2c4a7ae4a9dca9e",
- "m_Title": "",
- "m_Content": "Dividing by 5 brings the data back into the 0-1 range so we can visualize the effect of the Ceiling node in the preview.",
- "m_TextSize": 0,
- "m_Theme": 0,
- "m_Position": {
- "serializedVersion": "2",
- "x": -443.5000305175781,
- "y": 484.00006103515627,
- "width": 200.00001525878907,
- "height": 100.0
- },
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.CeilingNode",
- "m_ObjectId": "46b2e48810544ab68559d3268149a01f",
- "m_Group": {
- "m_Id": "ee49b28c1a5d4105b41353c02e7ee4d0"
- },
- "m_Name": "Ceiling",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1628.5001220703125,
- "y": 178.00001525878907,
- "width": 208.0,
- "height": 278.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "155246ae888048a9b0719f7251bdbea5"
- },
- {
- "m_Id": "0d731c1df674435d8c8e7bfb46a71383"
- }
- ],
- "synonyms": [
- "up"
- ],
- "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": "539831191601414588f5740362a28f59",
- "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.CeilingNode",
- "m_ObjectId": "55c4753943e946c589faa331b16d6f39",
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- },
- "m_Name": "Ceiling",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -665.4999389648438,
- "y": 181.00001525878907,
- "width": 127.49993896484375,
- "height": 94.00001525878906
- }
- },
- "m_Slots": [
- {
- "m_Id": "faf8b04f9cf94b37ab51db1bc0a136d7"
- },
- {
- "m_Id": "f050383e89ad4e509c65db829469e7d8"
- }
- ],
- "synonyms": [
- "up"
- ],
- "m_Precision": 0,
- "m_PreviewExpanded": false,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInUnlitSubTarget",
- "m_ObjectId": "57707bf29bb44bfb9f6f249acff1d342"
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
- "m_ObjectId": "58bec0bd03814b27b612b9a2c47bfb3c",
- "m_Id": 0,
- "m_DisplayName": "Tangent",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "Tangent",
- "m_StageCapability": 1,
- "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_Space": 0
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.CeilingNode",
- "m_ObjectId": "596c57ce97f84bb29d4fd12d9331f92c",
- "m_Group": {
- "m_Id": "ee49b28c1a5d4105b41353c02e7ee4d0"
- },
- "m_Name": "Ceiling",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1628.5001220703125,
- "y": 475.50006103515627,
- "width": 208.0,
- "height": 278.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "cae786c38b07489998293e1710b370f2"
- },
- {
- "m_Id": "8183f2b7728f4c759381113e8ba53162"
- }
- ],
- "synonyms": [
- "up"
- ],
- "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": "5aaf8758ace3414daab19845ced956e3",
- "m_Id": 0,
- "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.Vector1MaterialSlot",
- "m_ObjectId": "5e57293564194a52bb186a2a850578a4",
- "m_Id": 1,
- "m_DisplayName": "X",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "X",
- "m_StageCapability": 3,
- "m_Value": 0.699999988079071,
- "m_DefaultValue": 0.0,
- "m_Labels": []
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget",
- "m_ObjectId": "691ff51d661a4f0dbc0fc678290b6f27"
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicValueMaterialSlot",
- "m_ObjectId": "6ebac864ebaf49e8978a03f03640ed25",
- "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.Vector1Node",
- "m_ObjectId": "8074ac20fd854d15a1a1867e60146a97",
- "m_Group": {
- "m_Id": "ee49b28c1a5d4105b41353c02e7ee4d0"
- },
- "m_Name": "Float",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1799.5001220703125,
- "y": 475.50006103515627,
- "width": 125.5,
- "height": 77.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "5e57293564194a52bb186a2a850578a4"
- },
- {
- "m_Id": "5aaf8758ace3414daab19845ced956e3"
- }
- ],
- "synonyms": [
- "Vector 1",
- "1",
- "v1",
- "vec1",
- "scalar"
- ],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_Value": 0.0
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
- "m_ObjectId": "80c59d1968a445bf91987a334adf3562",
- "m_Title": "Ceiling Node",
- "m_Content": "The Ceiling Node rounds the input value up to the nearest whole number.",
- "m_TextSize": 0,
- "m_Theme": 0,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1046.5001220703125,
- "y": -22.000001907348634,
- "width": 200.00006103515626,
- "height": 100.00000762939453
- },
- "m_Group": {
- "m_Id": ""
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "8183f2b7728f4c759381113e8ba53162",
- "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": "89951442e8db4f7bbca543db19ccd205",
- "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.DynamicValueMaterialSlot",
- "m_ObjectId": "8bdb5a327b2d4ef8a98f63fb4760f01c",
- "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.NormalMaterialSlot",
- "m_ObjectId": "952020d515ba4e9ab6b2779c553091ba",
- "m_Id": 0,
- "m_DisplayName": "Normal",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "Normal",
- "m_StageCapability": 1,
- "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_Space": 0
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.BlockNode",
- "m_ObjectId": "96a128f64c86473dab38d058e778bd62",
- "m_Group": {
- "m_Id": ""
- },
- "m_Name": "VertexDescription.Normal",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": 0.0,
- "y": 0.0,
- "width": 0.0,
- "height": 0.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "952020d515ba4e9ab6b2779c553091ba"
- }
- ],
- "synonyms": [],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_SerializedDescriptor": "VertexDescription.Normal"
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.BlockNode",
- "m_ObjectId": "983d93b86ac04e8f9727cd4678184a65",
- "m_Group": {
- "m_Id": ""
- },
- "m_Name": "SurfaceDescription.Emission",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": 0.0,
- "y": 0.0,
- "width": 0.0,
- "height": 0.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "9891e9e861ff401cb04ed788aa8c99b1"
- }
- ],
- "synonyms": [],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_SerializedDescriptor": "SurfaceDescription.Emission"
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
- "m_ObjectId": "9891e9e861ff401cb04ed788aa8c99b1",
- "m_Id": 0,
- "m_DisplayName": "Emission",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "Emission",
- "m_StageCapability": 2,
- "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_ColorMode": 1,
- "m_DefaultColor": {
- "r": 0.0,
- "g": 0.0,
- "b": 0.0,
- "a": 1.0
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.BlockNode",
- "m_ObjectId": "9e46674d480343fe8bbfa12d82432765",
- "m_Group": {
- "m_Id": ""
- },
- "m_Name": "SurfaceDescription.Alpha",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": 0.0,
- "y": 0.0,
- "width": 0.0,
- "height": 0.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "cb013f6159cb4915aea2d38a44b890a8"
- }
- ],
- "synonyms": [],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_SerializedDescriptor": "SurfaceDescription.Alpha"
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DivideNode",
- "m_ObjectId": "a4a5ec5d105f4a97b0eed01316e02e4a",
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- },
- "m_Name": "Divide",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -447.5,
- "y": 181.00001525878907,
- "width": 208.0000457763672,
- "height": 302.00006103515627
- }
- },
- "m_Slots": [
- {
- "m_Id": "17bac9e280b443ee8169dd058b9b47b3"
- },
- {
- "m_Id": "e0fa46b974c24bca86ad0fa4909d7de2"
- },
- {
- "m_Id": "d34f784912314a0e92923a69f21966f9"
- }
- ],
- "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.BlockNode",
- "m_ObjectId": "a954e08fa95a4df49d9610c55068597d",
- "m_Group": {
- "m_Id": ""
- },
- "m_Name": "VertexDescription.Tangent",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": 0.0,
- "y": 0.0,
- "width": 0.0,
- "height": 0.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "58bec0bd03814b27b612b9a2c47bfb3c"
- }
- ],
- "synonyms": [],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_SerializedDescriptor": "VertexDescription.Tangent"
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.BlockNode",
- "m_ObjectId": "ada70a76d843491683ea0ff08dfe402e",
- "m_Group": {
- "m_Id": ""
- },
- "m_Name": "VertexDescription.Position",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": 0.0,
- "y": 0.0,
- "width": 0.0,
- "height": 0.0
- }
- },
- "m_Slots": [
- {
- "m_Id": "cf3a1282c05c43dda54b1eea824a1e61"
- }
- ],
- "synonyms": [],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_SerializedDescriptor": "VertexDescription.Position"
- }
-
- {
- "m_SGVersion": 2,
- "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInTarget",
- "m_ObjectId": "b167ce50e81b46fea51fa3cb8f20a732",
- "m_ActiveSubTarget": {
- "m_Id": "57707bf29bb44bfb9f6f249acff1d342"
- },
- "m_AllowMaterialOverride": false,
- "m_SurfaceType": 0,
- "m_ZWriteControl": 0,
- "m_ZTestMode": 4,
- "m_AlphaMode": 0,
- "m_RenderFace": 2,
- "m_AlphaClip": false,
- "m_CustomEditorGUI": ""
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
- "m_ObjectId": "b2ae7d6f01504276b9a2d6380971b5c0",
- "m_MaterialNeedsUpdateHash": 0,
- "m_SurfaceType": 0,
- "m_RenderingPass": 1,
- "m_BlendMode": 0,
- "m_ZTest": 4,
- "m_ZWrite": false,
- "m_TransparentCullMode": 2,
- "m_OpaqueCullMode": 2,
- "m_SortPriority": 0,
- "m_AlphaTest": false,
- "m_TransparentDepthPrepass": false,
- "m_TransparentDepthPostpass": false,
- "m_SupportLodCrossFade": false,
- "m_DoubleSidedMode": 0,
- "m_DOTSInstancing": false,
- "m_CustomVelocity": false,
- "m_Tessellation": false,
- "m_TessellationMode": 0,
- "m_TessellationFactorMinDistance": 20.0,
- "m_TessellationFactorMaxDistance": 50.0,
- "m_TessellationFactorTriangleSize": 100.0,
- "m_TessellationShapeFactor": 0.75,
- "m_TessellationBackFaceCullEpsilon": -0.25,
- "m_TessellationMaxDisplacement": 0.009999999776482582,
- "m_DebugSymbols": false,
- "m_Version": 2,
- "inspectorFoldoutMask": 0
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "b4ed7e6dc7214f0cb70a03cd0c24bdb1",
- "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.StickyNoteData",
- "m_ObjectId": "c152205b87dd4160bb4f7b878650f790",
- "m_Title": "",
- "m_Content": "We create a horizontal gradient using the UV coordinates.",
- "m_TextSize": 0,
- "m_Theme": 0,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1200.0001220703125,
- "y": 491.00006103515627,
- "width": 200.00006103515626,
- "height": 100.0
- },
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "cae786c38b07489998293e1710b370f2",
- "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.Vector1MaterialSlot",
- "m_ObjectId": "cb013f6159cb4915aea2d38a44b890a8",
- "m_Id": 0,
- "m_DisplayName": "Alpha",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "Alpha",
- "m_StageCapability": 2,
- "m_Value": 1.0,
- "m_DefaultValue": 1.0,
- "m_Labels": []
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.UVNode",
- "m_ObjectId": "cb1f56d896f74d3286d9a8e920a3b64d",
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- },
- "m_Name": "UV",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1347.0,
- "y": 181.00001525878907,
- "width": 145.0,
- "height": 128.49998474121095
- }
- },
- "m_Slots": [
- {
- "m_Id": "2fce626f72b8458baf81def75f615607"
- }
- ],
- "synonyms": [
- "texcoords",
- "coords",
- "coordinates"
- ],
- "m_Precision": 0,
- "m_PreviewExpanded": false,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_OutputChannel": 0
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
- "m_ObjectId": "cf3a1282c05c43dda54b1eea824a1e61",
- "m_Id": 0,
- "m_DisplayName": "Position",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "Position",
- "m_StageCapability": 1,
- "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_Space": 0
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "d34f784912314a0e92923a69f21966f9",
- "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.CeilingNode",
- "m_ObjectId": "d43a36e7cf7141d8b0012fdea8929490",
- "m_Group": {
- "m_Id": ""
- },
- "m_Name": "Ceiling",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1178.5001220703125,
- "y": -28.000009536743165,
- "width": 127.5001220703125,
- "height": 94.00000762939453
- }
- },
- "m_Slots": [
- {
- "m_Id": "539831191601414588f5740362a28f59"
- },
- {
- "m_Id": "b4ed7e6dc7214f0cb70a03cd0c24bdb1"
- }
- ],
- "synonyms": [
- "up"
- ],
- "m_Precision": 0,
- "m_PreviewExpanded": false,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData",
- "m_ObjectId": "d7bc3ce27e9f4b6cbbd8c69ee500ab3a",
- "m_EnableShadowMatte": false,
- "m_DistortionOnly": false
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "e0fa46b974c24bca86ad0fa4909d7de2",
- "m_Id": 1,
- "m_DisplayName": "B",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "B",
- "m_StageCapability": 3,
- "m_Value": {
- "x": 5.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.ColorRGBMaterialSlot",
- "m_ObjectId": "e98686e8000e4a929e15046a32877493",
- "m_Id": 0,
- "m_DisplayName": "Base Color",
- "m_SlotType": 0,
- "m_Hidden": false,
- "m_ShaderOutputName": "BaseColor",
- "m_StageCapability": 2,
- "m_Value": {
- "x": 0.5,
- "y": 0.5,
- "z": 0.5
- },
- "m_DefaultValue": {
- "x": 0.0,
- "y": 0.0,
- "z": 0.0
- },
- "m_Labels": [],
- "m_ColorMode": 0,
- "m_DefaultColor": {
- "r": 0.5,
- "g": 0.5,
- "b": 0.5,
- "a": 1.0
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget",
- "m_ObjectId": "eaddd6bef44c493b9835e8014dcd2fe1",
- "m_ActiveSubTarget": {
- "m_Id": "691ff51d661a4f0dbc0fc678290b6f27"
- },
- "m_Datas": [
- {
- "m_Id": "3c85efb361814c7ba80d6d4b09b97f20"
- },
- {
- "m_Id": "b2ae7d6f01504276b9a2d6380971b5c0"
- },
- {
- "m_Id": "d7bc3ce27e9f4b6cbbd8c69ee500ab3a"
- }
- ],
- "m_CustomEditorGUI": "",
- "m_SupportVFX": false,
- "m_SupportLineRendering": false
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.Vector1Node",
- "m_ObjectId": "eccf9407845a4e90aa52cb96d02caff9",
- "m_Group": {
- "m_Id": "ee49b28c1a5d4105b41353c02e7ee4d0"
- },
- "m_Name": "Float",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1800.0001220703125,
- "y": 178.00001525878907,
- "width": 125.5,
- "height": 77.00001525878906
- }
- },
- "m_Slots": [
- {
- "m_Id": "0cac6fe9db774acea78c565a299c7f4c"
- },
- {
- "m_Id": "21d173110f334fb9a0d605e1a3da7419"
- }
- ],
- "synonyms": [
- "Vector 1",
- "1",
- "v1",
- "vec1",
- "scalar"
- ],
- "m_Precision": 0,
- "m_PreviewExpanded": true,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- },
- "m_Value": 0.0
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.GroupData",
- "m_ObjectId": "ee49b28c1a5d4105b41353c02e7ee4d0",
- "m_Title": "Rounding Up",
- "m_Position": {
- "x": -1825.0001220703125,
- "y": 119.50000762939453
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "f050383e89ad4e509c65db829469e7d8",
- "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.MultiplyNode",
- "m_ObjectId": "f3fbe06b69644d3dacfa545eff5a8477",
- "m_Group": {
- "m_Id": "30a7e13a4bec4098b10998774cbdf8fe"
- },
- "m_Name": "Multiply",
- "m_DrawState": {
- "m_Expanded": true,
- "m_Position": {
- "serializedVersion": "2",
- "x": -899.9999389648438,
- "y": 181.00001525878907,
- "width": 126.0,
- "height": 118.00001525878906
- }
- },
- "m_Slots": [
- {
- "m_Id": "6ebac864ebaf49e8978a03f03640ed25"
- },
- {
- "m_Id": "2a8253ddb22a4469979cbae0936a39d9"
- },
- {
- "m_Id": "8bdb5a327b2d4ef8a98f63fb4760f01c"
- }
- ],
- "synonyms": [
- "multiplication",
- "times",
- "x"
- ],
- "m_Precision": 0,
- "m_PreviewExpanded": false,
- "m_DismissedVersion": 0,
- "m_PreviewMode": 0,
- "m_CustomColors": {
- "m_SerializableColors": []
- }
- }
-
- {
- "m_SGVersion": 0,
- "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
- "m_ObjectId": "faf8b04f9cf94b37ab51db1bc0a136d7",
- "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.Vector1MaterialSlot",
- "m_ObjectId": "fe5281b162534886ab2531a6b74e534d",
- "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.StickyNoteData",
- "m_ObjectId": "ffc488a52b6240d0a2dabcb8dc4e1908",
- "m_Title": "",
- "m_Content": "All values between zero and one get rounded up to one.",
- "m_TextSize": 0,
- "m_Theme": 0,
- "m_Position": {
- "serializedVersion": "2",
- "x": -1877.0001220703125,
- "y": 304.5000305175781,
- "width": 200.0,
- "height": 100.0
- },
- "m_Group": {
- "m_Id": "ee49b28c1a5d4105b41353c02e7ee4d0"
- }
- }
|