暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Sign.shadergraph 43KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. {
  2. "m_SGVersion": 3,
  3. "m_Type": "UnityEditor.ShaderGraph.GraphData",
  4. "m_ObjectId": "f0884f927810451c8932a84be541011d",
  5. "m_Properties": [],
  6. "m_Keywords": [],
  7. "m_Dropdowns": [],
  8. "m_CategoryData": [
  9. {
  10. "m_Id": "44d87f4aca09413d91f37b5b6ae610e0"
  11. }
  12. ],
  13. "m_Nodes": [
  14. {
  15. "m_Id": "e625235660d54ce3927040376e0c97b5"
  16. },
  17. {
  18. "m_Id": "9e1940bb2885439f8bb94ccef33a7fb9"
  19. },
  20. {
  21. "m_Id": "f451e43f57b3411489d0a68044593919"
  22. },
  23. {
  24. "m_Id": "18cbfac04a6941ff8c490a28185928ee"
  25. },
  26. {
  27. "m_Id": "ea3cd1e82250401cb5c9b5c9adfa49ad"
  28. },
  29. {
  30. "m_Id": "7aa3a8fe03124907b54d26e5a93da5b4"
  31. },
  32. {
  33. "m_Id": "a6b8275941cc4af88b92e6da8019536e"
  34. },
  35. {
  36. "m_Id": "7fc3592345f24a0b9dd5bc5783b5aa6b"
  37. },
  38. {
  39. "m_Id": "c46ba95bb8d34e3e868a628476bb3825"
  40. },
  41. {
  42. "m_Id": "347fe38f85a849b286694958595aea8d"
  43. },
  44. {
  45. "m_Id": "dc076e6dade44c3fa17355d405602560"
  46. },
  47. {
  48. "m_Id": "6fc717080c68404baa6abd344d13e7b4"
  49. },
  50. {
  51. "m_Id": "b4b768b290c34d2bab0cdeb4dbd8cd4a"
  52. },
  53. {
  54. "m_Id": "a8d718227e3c4fca9711d279a90ca5c7"
  55. },
  56. {
  57. "m_Id": "5bce790aa7d84268a37b8624a5e5bcc5"
  58. },
  59. {
  60. "m_Id": "d1c8dc7db4f240deb4bfc4af8c16da3d"
  61. },
  62. {
  63. "m_Id": "1e514d7b20de4649a9d1c476f5c8eb3f"
  64. }
  65. ],
  66. "m_GroupDatas": [
  67. {
  68. "m_Id": "1b36861b9c89441383dc516d4a021e6d"
  69. },
  70. {
  71. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  72. }
  73. ],
  74. "m_StickyNoteDatas": [
  75. {
  76. "m_Id": "0aa5be59e7504e5ba35c0df6de802278"
  77. },
  78. {
  79. "m_Id": "e777ca52a62c4f11a65a40c1ed6a001e"
  80. },
  81. {
  82. "m_Id": "423f1fe4988240fcae56a3bbc7d9d95b"
  83. },
  84. {
  85. "m_Id": "be40dd10e01e492bb8f4912e5c2b477f"
  86. }
  87. ],
  88. "m_Edges": [
  89. {
  90. "m_OutputSlot": {
  91. "m_Node": {
  92. "m_Id": "347fe38f85a849b286694958595aea8d"
  93. },
  94. "m_SlotId": 1
  95. },
  96. "m_InputSlot": {
  97. "m_Node": {
  98. "m_Id": "5bce790aa7d84268a37b8624a5e5bcc5"
  99. },
  100. "m_SlotId": 0
  101. }
  102. },
  103. {
  104. "m_OutputSlot": {
  105. "m_Node": {
  106. "m_Id": "5bce790aa7d84268a37b8624a5e5bcc5"
  107. },
  108. "m_SlotId": 1
  109. },
  110. "m_InputSlot": {
  111. "m_Node": {
  112. "m_Id": "dc076e6dade44c3fa17355d405602560"
  113. },
  114. "m_SlotId": 0
  115. }
  116. },
  117. {
  118. "m_OutputSlot": {
  119. "m_Node": {
  120. "m_Id": "7aa3a8fe03124907b54d26e5a93da5b4"
  121. },
  122. "m_SlotId": 0
  123. },
  124. "m_InputSlot": {
  125. "m_Node": {
  126. "m_Id": "7fc3592345f24a0b9dd5bc5783b5aa6b"
  127. },
  128. "m_SlotId": 0
  129. }
  130. },
  131. {
  132. "m_OutputSlot": {
  133. "m_Node": {
  134. "m_Id": "7aa3a8fe03124907b54d26e5a93da5b4"
  135. },
  136. "m_SlotId": 0
  137. },
  138. "m_InputSlot": {
  139. "m_Node": {
  140. "m_Id": "a6b8275941cc4af88b92e6da8019536e"
  141. },
  142. "m_SlotId": 0
  143. }
  144. },
  145. {
  146. "m_OutputSlot": {
  147. "m_Node": {
  148. "m_Id": "7fc3592345f24a0b9dd5bc5783b5aa6b"
  149. },
  150. "m_SlotId": 1
  151. },
  152. "m_InputSlot": {
  153. "m_Node": {
  154. "m_Id": "a6b8275941cc4af88b92e6da8019536e"
  155. },
  156. "m_SlotId": 1
  157. }
  158. },
  159. {
  160. "m_OutputSlot": {
  161. "m_Node": {
  162. "m_Id": "c46ba95bb8d34e3e868a628476bb3825"
  163. },
  164. "m_SlotId": 0
  165. },
  166. "m_InputSlot": {
  167. "m_Node": {
  168. "m_Id": "347fe38f85a849b286694958595aea8d"
  169. },
  170. "m_SlotId": 0
  171. }
  172. },
  173. {
  174. "m_OutputSlot": {
  175. "m_Node": {
  176. "m_Id": "dc076e6dade44c3fa17355d405602560"
  177. },
  178. "m_SlotId": 1
  179. },
  180. "m_InputSlot": {
  181. "m_Node": {
  182. "m_Id": "6fc717080c68404baa6abd344d13e7b4"
  183. },
  184. "m_SlotId": 0
  185. }
  186. },
  187. {
  188. "m_OutputSlot": {
  189. "m_Node": {
  190. "m_Id": "dc076e6dade44c3fa17355d405602560"
  191. },
  192. "m_SlotId": 2
  193. },
  194. "m_InputSlot": {
  195. "m_Node": {
  196. "m_Id": "b4b768b290c34d2bab0cdeb4dbd8cd4a"
  197. },
  198. "m_SlotId": 0
  199. }
  200. },
  201. {
  202. "m_OutputSlot": {
  203. "m_Node": {
  204. "m_Id": "dc076e6dade44c3fa17355d405602560"
  205. },
  206. "m_SlotId": 3
  207. },
  208. "m_InputSlot": {
  209. "m_Node": {
  210. "m_Id": "a8d718227e3c4fca9711d279a90ca5c7"
  211. },
  212. "m_SlotId": 0
  213. }
  214. }
  215. ],
  216. "m_VertexContext": {
  217. "m_Position": {
  218. "x": 0.0,
  219. "y": 0.0
  220. },
  221. "m_Blocks": [
  222. {
  223. "m_Id": "e625235660d54ce3927040376e0c97b5"
  224. },
  225. {
  226. "m_Id": "9e1940bb2885439f8bb94ccef33a7fb9"
  227. },
  228. {
  229. "m_Id": "f451e43f57b3411489d0a68044593919"
  230. }
  231. ]
  232. },
  233. "m_FragmentContext": {
  234. "m_Position": {
  235. "x": 0.0,
  236. "y": 200.0
  237. },
  238. "m_Blocks": [
  239. {
  240. "m_Id": "18cbfac04a6941ff8c490a28185928ee"
  241. },
  242. {
  243. "m_Id": "d1c8dc7db4f240deb4bfc4af8c16da3d"
  244. },
  245. {
  246. "m_Id": "1e514d7b20de4649a9d1c476f5c8eb3f"
  247. }
  248. ]
  249. },
  250. "m_PreviewData": {
  251. "serializedMesh": {
  252. "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
  253. "m_Guid": ""
  254. },
  255. "preventRotation": false
  256. },
  257. "m_Path": "Shader Graphs",
  258. "m_GraphPrecision": 1,
  259. "m_PreviewMode": 2,
  260. "m_OutputNode": {
  261. "m_Id": ""
  262. },
  263. "m_ActiveTargets": [
  264. {
  265. "m_Id": "d6c1732b92a44042aea65506096262d2"
  266. },
  267. {
  268. "m_Id": "0fad20a24feb421d86b63f37862db9fa"
  269. },
  270. {
  271. "m_Id": "2e6ba64d3c354498b668bd0d55003c48"
  272. }
  273. ]
  274. }
  275. {
  276. "m_SGVersion": 0,
  277. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  278. "m_ObjectId": "0aa5be59e7504e5ba35c0df6de802278",
  279. "m_Title": "Sign Node",
  280. "m_Content": "The Sign Node gives the sign (negative or positive) of the input. It returns 1 if the input is positive and -1 if the input is negative. If the number is zero, it returns 0.",
  281. "m_TextSize": 0,
  282. "m_Theme": 0,
  283. "m_Position": {
  284. "serializedVersion": "2",
  285. "x": -1082.5001220703125,
  286. "y": -85.50000762939453,
  287. "width": 200.00006103515626,
  288. "height": 100.00000762939453
  289. },
  290. "m_Group": {
  291. "m_Id": ""
  292. }
  293. }
  294. {
  295. "m_SGVersion": 0,
  296. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget",
  297. "m_ObjectId": "0fad20a24feb421d86b63f37862db9fa",
  298. "m_ActiveSubTarget": {
  299. "m_Id": "8d91eed9ca574d7a846cbd354f31da71"
  300. },
  301. "m_Datas": [
  302. {
  303. "m_Id": "d842d0b357c94c77bb5b06e525ca39e6"
  304. },
  305. {
  306. "m_Id": "eec503e49a304e80813f02ae3a7e7793"
  307. },
  308. {
  309. "m_Id": "cf3f3748da5a475cbf24d1f65cb72581"
  310. }
  311. ],
  312. "m_CustomEditorGUI": "",
  313. "m_SupportVFX": false,
  314. "m_SupportLineRendering": false
  315. }
  316. {
  317. "m_SGVersion": 2,
  318. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
  319. "m_ObjectId": "1091133922e1422b90a489e8d23340a6"
  320. }
  321. {
  322. "m_SGVersion": 0,
  323. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  324. "m_ObjectId": "18cbfac04a6941ff8c490a28185928ee",
  325. "m_Group": {
  326. "m_Id": ""
  327. },
  328. "m_Name": "SurfaceDescription.BaseColor",
  329. "m_DrawState": {
  330. "m_Expanded": true,
  331. "m_Position": {
  332. "serializedVersion": "2",
  333. "x": 0.0,
  334. "y": 0.0,
  335. "width": 0.0,
  336. "height": 0.0
  337. }
  338. },
  339. "m_Slots": [
  340. {
  341. "m_Id": "e620fadba331486fbc9fa17707323f54"
  342. }
  343. ],
  344. "synonyms": [],
  345. "m_Precision": 0,
  346. "m_PreviewExpanded": true,
  347. "m_DismissedVersion": 0,
  348. "m_PreviewMode": 0,
  349. "m_CustomColors": {
  350. "m_SerializableColors": []
  351. },
  352. "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
  353. }
  354. {
  355. "m_SGVersion": 0,
  356. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  357. "m_ObjectId": "1b36861b9c89441383dc516d4a021e6d",
  358. "m_Title": "Under The Hood",
  359. "m_Position": {
  360. "x": -1802.5001220703125,
  361. "y": 45.0000114440918
  362. }
  363. }
  364. {
  365. "m_SGVersion": 0,
  366. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  367. "m_ObjectId": "1cf8dfd21da04e25a7be6bff33ec8138",
  368. "m_Id": 0,
  369. "m_DisplayName": "In",
  370. "m_SlotType": 0,
  371. "m_Hidden": false,
  372. "m_ShaderOutputName": "In",
  373. "m_StageCapability": 3,
  374. "m_Value": {
  375. "x": 0.0,
  376. "y": 0.0,
  377. "z": 0.0,
  378. "w": 0.0
  379. },
  380. "m_DefaultValue": {
  381. "x": 0.0,
  382. "y": 0.0,
  383. "z": 0.0,
  384. "w": 0.0
  385. }
  386. }
  387. {
  388. "m_SGVersion": 0,
  389. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  390. "m_ObjectId": "1e514d7b20de4649a9d1c476f5c8eb3f",
  391. "m_Group": {
  392. "m_Id": ""
  393. },
  394. "m_Name": "SurfaceDescription.Alpha",
  395. "m_DrawState": {
  396. "m_Expanded": true,
  397. "m_Position": {
  398. "serializedVersion": "2",
  399. "x": 0.0,
  400. "y": 0.0,
  401. "width": 0.0,
  402. "height": 0.0
  403. }
  404. },
  405. "m_Slots": [
  406. {
  407. "m_Id": "84e25a536cce41c0b7034ef911456256"
  408. }
  409. ],
  410. "synonyms": [],
  411. "m_Precision": 0,
  412. "m_PreviewExpanded": true,
  413. "m_DismissedVersion": 0,
  414. "m_PreviewMode": 0,
  415. "m_CustomColors": {
  416. "m_SerializableColors": []
  417. },
  418. "m_SerializedDescriptor": "SurfaceDescription.Alpha"
  419. }
  420. {
  421. "m_SGVersion": 0,
  422. "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
  423. "m_ObjectId": "28a74eac0b04467485adab27c09d8e9b",
  424. "m_Id": 0,
  425. "m_DisplayName": "Tangent",
  426. "m_SlotType": 0,
  427. "m_Hidden": false,
  428. "m_ShaderOutputName": "Tangent",
  429. "m_StageCapability": 1,
  430. "m_Value": {
  431. "x": 0.0,
  432. "y": 0.0,
  433. "z": 0.0
  434. },
  435. "m_DefaultValue": {
  436. "x": 0.0,
  437. "y": 0.0,
  438. "z": 0.0
  439. },
  440. "m_Labels": [],
  441. "m_Space": 0
  442. }
  443. {
  444. "m_SGVersion": 0,
  445. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  446. "m_ObjectId": "2d586535604144848b3ea7a43921fd91",
  447. "m_Id": 0,
  448. "m_DisplayName": "In",
  449. "m_SlotType": 0,
  450. "m_Hidden": false,
  451. "m_ShaderOutputName": "In",
  452. "m_StageCapability": 3,
  453. "m_Value": {
  454. "x": 0.0,
  455. "y": 0.0,
  456. "z": 0.0,
  457. "w": 0.0
  458. },
  459. "m_DefaultValue": {
  460. "x": 0.0,
  461. "y": 0.0,
  462. "z": 0.0,
  463. "w": 0.0
  464. }
  465. }
  466. {
  467. "m_SGVersion": 0,
  468. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  469. "m_ObjectId": "2d668a74c6f34963abd51d37a9992b54",
  470. "m_Id": 1,
  471. "m_DisplayName": "B",
  472. "m_SlotType": 0,
  473. "m_Hidden": false,
  474. "m_ShaderOutputName": "B",
  475. "m_StageCapability": 3,
  476. "m_Value": {
  477. "x": 2.0,
  478. "y": 2.0,
  479. "z": 2.0,
  480. "w": 2.0
  481. },
  482. "m_DefaultValue": {
  483. "x": 0.0,
  484. "y": 0.0,
  485. "z": 0.0,
  486. "w": 0.0
  487. }
  488. }
  489. {
  490. "m_SGVersion": 1,
  491. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
  492. "m_ObjectId": "2e6ba64d3c354498b668bd0d55003c48",
  493. "m_Datas": [],
  494. "m_ActiveSubTarget": {
  495. "m_Id": "1091133922e1422b90a489e8d23340a6"
  496. },
  497. "m_AllowMaterialOverride": false,
  498. "m_SurfaceType": 0,
  499. "m_ZTestMode": 4,
  500. "m_ZWriteControl": 0,
  501. "m_AlphaMode": 0,
  502. "m_RenderFace": 2,
  503. "m_AlphaClip": false,
  504. "m_CastShadows": true,
  505. "m_ReceiveShadows": true,
  506. "m_AdditionalMotionVectorMode": 0,
  507. "m_AlembicMotionVectors": false,
  508. "m_SupportsLODCrossFade": false,
  509. "m_CustomEditorGUI": "",
  510. "m_SupportVFX": false
  511. }
  512. {
  513. "m_SGVersion": 0,
  514. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  515. "m_ObjectId": "2ee3cc2492a44db89fbfc03e0b7c2c32",
  516. "m_Id": 1,
  517. "m_DisplayName": "Out",
  518. "m_SlotType": 1,
  519. "m_Hidden": false,
  520. "m_ShaderOutputName": "Out",
  521. "m_StageCapability": 3,
  522. "m_Value": {
  523. "x": 0.0,
  524. "y": 0.0,
  525. "z": 0.0,
  526. "w": 0.0
  527. },
  528. "m_DefaultValue": {
  529. "x": 0.0,
  530. "y": 0.0,
  531. "z": 0.0,
  532. "w": 0.0
  533. }
  534. }
  535. {
  536. "m_SGVersion": 0,
  537. "m_Type": "UnityEditor.ShaderGraph.SignNode",
  538. "m_ObjectId": "347fe38f85a849b286694958595aea8d",
  539. "m_Group": {
  540. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  541. },
  542. "m_Name": "Sign",
  543. "m_DrawState": {
  544. "m_Expanded": true,
  545. "m_Position": {
  546. "serializedVersion": "2",
  547. "x": -1041.5001220703125,
  548. "y": 101.00003051757813,
  549. "width": 208.00006103515626,
  550. "height": 277.9999694824219
  551. }
  552. },
  553. "m_Slots": [
  554. {
  555. "m_Id": "863460c8ff3e41d1a4c7be6ac9031acb"
  556. },
  557. {
  558. "m_Id": "634795d8166f4a0eace6ca084e113d1b"
  559. }
  560. ],
  561. "synonyms": [],
  562. "m_Precision": 0,
  563. "m_PreviewExpanded": false,
  564. "m_DismissedVersion": 0,
  565. "m_PreviewMode": 0,
  566. "m_CustomColors": {
  567. "m_SerializableColors": []
  568. }
  569. }
  570. {
  571. "m_SGVersion": 0,
  572. "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
  573. "m_ObjectId": "367b8236caf6475cbd33804228cb10f2",
  574. "m_Id": 0,
  575. "m_DisplayName": "Position",
  576. "m_SlotType": 0,
  577. "m_Hidden": false,
  578. "m_ShaderOutputName": "Position",
  579. "m_StageCapability": 1,
  580. "m_Value": {
  581. "x": 0.0,
  582. "y": 0.0,
  583. "z": 0.0
  584. },
  585. "m_DefaultValue": {
  586. "x": 0.0,
  587. "y": 0.0,
  588. "z": 0.0
  589. },
  590. "m_Labels": [],
  591. "m_Space": 0
  592. }
  593. {
  594. "m_SGVersion": 0,
  595. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInUnlitSubTarget",
  596. "m_ObjectId": "3d08ba479c0e402d82c02f635d1dce9d"
  597. }
  598. {
  599. "m_SGVersion": 0,
  600. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  601. "m_ObjectId": "423f1fe4988240fcae56a3bbc7d9d95b",
  602. "m_Title": "",
  603. "m_Content": "The Sign node divides the input value by the absolute value of the input resulting in either 1 or -1.",
  604. "m_TextSize": 0,
  605. "m_Theme": 0,
  606. "m_Position": {
  607. "serializedVersion": "2",
  608. "x": -1662.0001220703125,
  609. "y": 311.0000305175781,
  610. "width": 200.0,
  611. "height": 100.0
  612. },
  613. "m_Group": {
  614. "m_Id": "1b36861b9c89441383dc516d4a021e6d"
  615. }
  616. }
  617. {
  618. "m_SGVersion": 0,
  619. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  620. "m_ObjectId": "44d87f4aca09413d91f37b5b6ae610e0",
  621. "m_Name": "",
  622. "m_ChildObjectList": []
  623. }
  624. {
  625. "m_SGVersion": 0,
  626. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  627. "m_ObjectId": "4a37e39398324784bb000032441bb87b",
  628. "m_Id": 0,
  629. "m_DisplayName": "In",
  630. "m_SlotType": 0,
  631. "m_Hidden": false,
  632. "m_ShaderOutputName": "In",
  633. "m_StageCapability": 3,
  634. "m_Value": {
  635. "x": 0.0,
  636. "y": 0.0,
  637. "z": 0.0,
  638. "w": 0.0
  639. },
  640. "m_DefaultValue": {
  641. "x": 0.0,
  642. "y": 0.0,
  643. "z": 0.0,
  644. "w": 0.0
  645. }
  646. }
  647. {
  648. "m_SGVersion": 0,
  649. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  650. "m_ObjectId": "582113be54024b008c802a9c028e9e94",
  651. "m_Id": 1,
  652. "m_DisplayName": "Out",
  653. "m_SlotType": 1,
  654. "m_Hidden": false,
  655. "m_ShaderOutputName": "Out",
  656. "m_StageCapability": 3,
  657. "m_Value": {
  658. "x": 0.0,
  659. "y": 0.0,
  660. "z": 0.0,
  661. "w": 0.0
  662. },
  663. "m_DefaultValue": {
  664. "x": 0.0,
  665. "y": 0.0,
  666. "z": 0.0,
  667. "w": 0.0
  668. }
  669. }
  670. {
  671. "m_SGVersion": 0,
  672. "m_Type": "UnityEditor.ShaderGraph.SaturateNode",
  673. "m_ObjectId": "5bce790aa7d84268a37b8624a5e5bcc5",
  674. "m_Group": {
  675. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  676. },
  677. "m_Name": "Saturate",
  678. "m_DrawState": {
  679. "m_Expanded": true,
  680. "m_Position": {
  681. "serializedVersion": "2",
  682. "x": -869.5000610351563,
  683. "y": 101.00003051757813,
  684. "width": 131.5,
  685. "height": 94.00001525878906
  686. }
  687. },
  688. "m_Slots": [
  689. {
  690. "m_Id": "2d586535604144848b3ea7a43921fd91"
  691. },
  692. {
  693. "m_Id": "fa95a05a15a54767887e9001b89a2c12"
  694. }
  695. ],
  696. "synonyms": [
  697. "clamp"
  698. ],
  699. "m_Precision": 0,
  700. "m_PreviewExpanded": false,
  701. "m_DismissedVersion": 0,
  702. "m_PreviewMode": 0,
  703. "m_CustomColors": {
  704. "m_SerializableColors": []
  705. }
  706. }
  707. {
  708. "m_SGVersion": 0,
  709. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  710. "m_ObjectId": "634795d8166f4a0eace6ca084e113d1b",
  711. "m_Id": 1,
  712. "m_DisplayName": "Out",
  713. "m_SlotType": 1,
  714. "m_Hidden": false,
  715. "m_ShaderOutputName": "Out",
  716. "m_StageCapability": 3,
  717. "m_Value": {
  718. "x": 0.0,
  719. "y": 0.0,
  720. "z": 0.0,
  721. "w": 0.0
  722. },
  723. "m_DefaultValue": {
  724. "x": 0.0,
  725. "y": 0.0,
  726. "z": 0.0,
  727. "w": 0.0
  728. }
  729. }
  730. {
  731. "m_SGVersion": 0,
  732. "m_Type": "UnityEditor.ShaderGraph.Vector3MaterialSlot",
  733. "m_ObjectId": "670a53da3f6c4a51929dbbe01475de8c",
  734. "m_Id": 0,
  735. "m_DisplayName": "Out",
  736. "m_SlotType": 1,
  737. "m_Hidden": false,
  738. "m_ShaderOutputName": "Out",
  739. "m_StageCapability": 3,
  740. "m_Value": {
  741. "x": 0.0,
  742. "y": 0.0,
  743. "z": 1.0
  744. },
  745. "m_DefaultValue": {
  746. "x": 0.0,
  747. "y": 0.0,
  748. "z": 0.0
  749. },
  750. "m_Labels": []
  751. }
  752. {
  753. "m_SGVersion": 0,
  754. "m_Type": "UnityEditor.ShaderGraph.PreviewNode",
  755. "m_ObjectId": "6fc717080c68404baa6abd344d13e7b4",
  756. "m_Group": {
  757. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  758. },
  759. "m_Name": "Preview",
  760. "m_DrawState": {
  761. "m_Expanded": true,
  762. "m_Position": {
  763. "serializedVersion": "2",
  764. "x": -545.5000610351563,
  765. "y": 101.00003051757813,
  766. "width": 208.00003051757813,
  767. "height": 277.9999694824219
  768. }
  769. },
  770. "m_Slots": [
  771. {
  772. "m_Id": "c44f75e542be4b1d9aad9a8686698954"
  773. },
  774. {
  775. "m_Id": "e7a1ba5b66f34b329275304975709bd6"
  776. }
  777. ],
  778. "synonyms": [],
  779. "m_Precision": 0,
  780. "m_PreviewExpanded": true,
  781. "m_DismissedVersion": 0,
  782. "m_PreviewMode": 0,
  783. "m_CustomColors": {
  784. "m_SerializableColors": []
  785. },
  786. "m_Width": 208.0,
  787. "m_Height": 208.0
  788. }
  789. {
  790. "m_SGVersion": 0,
  791. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  792. "m_ObjectId": "7393fd611b6d4f47b12fe9082da7f111",
  793. "m_Id": 0,
  794. "m_DisplayName": "In",
  795. "m_SlotType": 0,
  796. "m_Hidden": false,
  797. "m_ShaderOutputName": "In",
  798. "m_StageCapability": 3,
  799. "m_Value": {
  800. "x": 0.0,
  801. "y": 0.0,
  802. "z": 0.0,
  803. "w": 0.0
  804. },
  805. "m_DefaultValue": {
  806. "x": 0.0,
  807. "y": 0.0,
  808. "z": 0.0,
  809. "w": 0.0
  810. }
  811. }
  812. {
  813. "m_SGVersion": 0,
  814. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  815. "m_ObjectId": "743971e05d424b9eb4f2a452bf393afa",
  816. "m_Id": 0,
  817. "m_DisplayName": "A",
  818. "m_SlotType": 0,
  819. "m_Hidden": false,
  820. "m_ShaderOutputName": "A",
  821. "m_StageCapability": 3,
  822. "m_Value": {
  823. "x": 0.0,
  824. "y": 0.0,
  825. "z": 0.0,
  826. "w": 0.0
  827. },
  828. "m_DefaultValue": {
  829. "x": 0.0,
  830. "y": 0.0,
  831. "z": 0.0,
  832. "w": 0.0
  833. }
  834. }
  835. {
  836. "m_SGVersion": 0,
  837. "m_Type": "UnityEditor.ShaderGraph.Vector1Node",
  838. "m_ObjectId": "7aa3a8fe03124907b54d26e5a93da5b4",
  839. "m_Group": {
  840. "m_Id": "1b36861b9c89441383dc516d4a021e6d"
  841. },
  842. "m_Name": "Float",
  843. "m_DrawState": {
  844. "m_Expanded": true,
  845. "m_Position": {
  846. "serializedVersion": "2",
  847. "x": -1777.5001220703125,
  848. "y": 132.00001525878907,
  849. "width": 125.5,
  850. "height": 77.00001525878906
  851. }
  852. },
  853. "m_Slots": [
  854. {
  855. "m_Id": "caf7f54522824253a3a6894f30daa470"
  856. },
  857. {
  858. "m_Id": "9fc7ce30920e46708cc355e43b45025c"
  859. }
  860. ],
  861. "synonyms": [
  862. "Vector 1",
  863. "1",
  864. "v1",
  865. "vec1",
  866. "scalar"
  867. ],
  868. "m_Precision": 0,
  869. "m_PreviewExpanded": true,
  870. "m_DismissedVersion": 0,
  871. "m_PreviewMode": 0,
  872. "m_CustomColors": {
  873. "m_SerializableColors": []
  874. },
  875. "m_Value": 0.0
  876. }
  877. {
  878. "m_SGVersion": 0,
  879. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  880. "m_ObjectId": "7b3eeb545b354d29992eec318f7eab13",
  881. "m_Id": 0,
  882. "m_DisplayName": "Emission",
  883. "m_SlotType": 0,
  884. "m_Hidden": false,
  885. "m_ShaderOutputName": "Emission",
  886. "m_StageCapability": 2,
  887. "m_Value": {
  888. "x": 0.0,
  889. "y": 0.0,
  890. "z": 0.0
  891. },
  892. "m_DefaultValue": {
  893. "x": 0.0,
  894. "y": 0.0,
  895. "z": 0.0
  896. },
  897. "m_Labels": [],
  898. "m_ColorMode": 1,
  899. "m_DefaultColor": {
  900. "r": 0.0,
  901. "g": 0.0,
  902. "b": 0.0,
  903. "a": 1.0
  904. }
  905. }
  906. {
  907. "m_SGVersion": 0,
  908. "m_Type": "UnityEditor.ShaderGraph.AbsoluteNode",
  909. "m_ObjectId": "7fc3592345f24a0b9dd5bc5783b5aa6b",
  910. "m_Group": {
  911. "m_Id": "1b36861b9c89441383dc516d4a021e6d"
  912. },
  913. "m_Name": "Absolute",
  914. "m_DrawState": {
  915. "m_Expanded": true,
  916. "m_Position": {
  917. "serializedVersion": "2",
  918. "x": -1627.5001220703125,
  919. "y": 209.00003051757813,
  920. "width": 127.5,
  921. "height": 94.0
  922. }
  923. },
  924. "m_Slots": [
  925. {
  926. "m_Id": "1cf8dfd21da04e25a7be6bff33ec8138"
  927. },
  928. {
  929. "m_Id": "582113be54024b008c802a9c028e9e94"
  930. }
  931. ],
  932. "synonyms": [
  933. "positive"
  934. ],
  935. "m_Precision": 0,
  936. "m_PreviewExpanded": false,
  937. "m_DismissedVersion": 0,
  938. "m_PreviewMode": 0,
  939. "m_CustomColors": {
  940. "m_SerializableColors": []
  941. }
  942. }
  943. {
  944. "m_SGVersion": 0,
  945. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  946. "m_ObjectId": "82f311ab62224d59af1763698c911b42",
  947. "m_Id": 2,
  948. "m_DisplayName": "G",
  949. "m_SlotType": 1,
  950. "m_Hidden": false,
  951. "m_ShaderOutputName": "G",
  952. "m_StageCapability": 3,
  953. "m_Value": 0.0,
  954. "m_DefaultValue": 0.0,
  955. "m_Labels": []
  956. }
  957. {
  958. "m_SGVersion": 0,
  959. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  960. "m_ObjectId": "83a9c05bc9c4485c8f029c77ca3e4356",
  961. "m_Id": 1,
  962. "m_DisplayName": "R",
  963. "m_SlotType": 1,
  964. "m_Hidden": false,
  965. "m_ShaderOutputName": "R",
  966. "m_StageCapability": 3,
  967. "m_Value": 0.0,
  968. "m_DefaultValue": 0.0,
  969. "m_Labels": []
  970. }
  971. {
  972. "m_SGVersion": 0,
  973. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  974. "m_ObjectId": "84e25a536cce41c0b7034ef911456256",
  975. "m_Id": 0,
  976. "m_DisplayName": "Alpha",
  977. "m_SlotType": 0,
  978. "m_Hidden": false,
  979. "m_ShaderOutputName": "Alpha",
  980. "m_StageCapability": 2,
  981. "m_Value": 1.0,
  982. "m_DefaultValue": 1.0,
  983. "m_Labels": []
  984. }
  985. {
  986. "m_SGVersion": 0,
  987. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  988. "m_ObjectId": "863460c8ff3e41d1a4c7be6ac9031acb",
  989. "m_Id": 0,
  990. "m_DisplayName": "In",
  991. "m_SlotType": 0,
  992. "m_Hidden": false,
  993. "m_ShaderOutputName": "In",
  994. "m_StageCapability": 3,
  995. "m_Value": {
  996. "x": 0.0,
  997. "y": 0.0,
  998. "z": 0.0,
  999. "w": 0.0
  1000. },
  1001. "m_DefaultValue": {
  1002. "x": 0.0,
  1003. "y": 0.0,
  1004. "z": 0.0,
  1005. "w": 0.0
  1006. }
  1007. }
  1008. {
  1009. "m_SGVersion": 0,
  1010. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  1011. "m_ObjectId": "8a827a48f41b4df4b39ea732aece2b72",
  1012. "m_Id": 0,
  1013. "m_DisplayName": "Normal",
  1014. "m_SlotType": 0,
  1015. "m_Hidden": false,
  1016. "m_ShaderOutputName": "Normal",
  1017. "m_StageCapability": 1,
  1018. "m_Value": {
  1019. "x": 0.0,
  1020. "y": 0.0,
  1021. "z": 0.0
  1022. },
  1023. "m_DefaultValue": {
  1024. "x": 0.0,
  1025. "y": 0.0,
  1026. "z": 0.0
  1027. },
  1028. "m_Labels": [],
  1029. "m_Space": 0
  1030. }
  1031. {
  1032. "m_SGVersion": 0,
  1033. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1034. "m_ObjectId": "8c93d87d32434b7d8ed3e3f0741732a6",
  1035. "m_Id": 1,
  1036. "m_DisplayName": "Out",
  1037. "m_SlotType": 1,
  1038. "m_Hidden": false,
  1039. "m_ShaderOutputName": "Out",
  1040. "m_StageCapability": 3,
  1041. "m_Value": {
  1042. "x": 0.0,
  1043. "y": 0.0,
  1044. "z": 0.0,
  1045. "w": 0.0
  1046. },
  1047. "m_DefaultValue": {
  1048. "x": 0.0,
  1049. "y": 0.0,
  1050. "z": 0.0,
  1051. "w": 0.0
  1052. }
  1053. }
  1054. {
  1055. "m_SGVersion": 0,
  1056. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget",
  1057. "m_ObjectId": "8d91eed9ca574d7a846cbd354f31da71"
  1058. }
  1059. {
  1060. "m_SGVersion": 0,
  1061. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1062. "m_ObjectId": "9e1940bb2885439f8bb94ccef33a7fb9",
  1063. "m_Group": {
  1064. "m_Id": ""
  1065. },
  1066. "m_Name": "VertexDescription.Normal",
  1067. "m_DrawState": {
  1068. "m_Expanded": true,
  1069. "m_Position": {
  1070. "serializedVersion": "2",
  1071. "x": 0.0,
  1072. "y": 0.0,
  1073. "width": 0.0,
  1074. "height": 0.0
  1075. }
  1076. },
  1077. "m_Slots": [
  1078. {
  1079. "m_Id": "8a827a48f41b4df4b39ea732aece2b72"
  1080. }
  1081. ],
  1082. "synonyms": [],
  1083. "m_Precision": 0,
  1084. "m_PreviewExpanded": true,
  1085. "m_DismissedVersion": 0,
  1086. "m_PreviewMode": 0,
  1087. "m_CustomColors": {
  1088. "m_SerializableColors": []
  1089. },
  1090. "m_SerializedDescriptor": "VertexDescription.Normal"
  1091. }
  1092. {
  1093. "m_SGVersion": 0,
  1094. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1095. "m_ObjectId": "9fc7ce30920e46708cc355e43b45025c",
  1096. "m_Id": 0,
  1097. "m_DisplayName": "Out",
  1098. "m_SlotType": 1,
  1099. "m_Hidden": false,
  1100. "m_ShaderOutputName": "Out",
  1101. "m_StageCapability": 3,
  1102. "m_Value": 0.0,
  1103. "m_DefaultValue": 0.0,
  1104. "m_Labels": []
  1105. }
  1106. {
  1107. "m_SGVersion": 0,
  1108. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1109. "m_ObjectId": "a3d3f801419d4ba89a1661fd77c9c9f9",
  1110. "m_Id": 2,
  1111. "m_DisplayName": "Out",
  1112. "m_SlotType": 1,
  1113. "m_Hidden": false,
  1114. "m_ShaderOutputName": "Out",
  1115. "m_StageCapability": 3,
  1116. "m_Value": {
  1117. "x": 0.0,
  1118. "y": 0.0,
  1119. "z": 0.0,
  1120. "w": 0.0
  1121. },
  1122. "m_DefaultValue": {
  1123. "x": 0.0,
  1124. "y": 0.0,
  1125. "z": 0.0,
  1126. "w": 0.0
  1127. }
  1128. }
  1129. {
  1130. "m_SGVersion": 0,
  1131. "m_Type": "UnityEditor.ShaderGraph.DivideNode",
  1132. "m_ObjectId": "a6b8275941cc4af88b92e6da8019536e",
  1133. "m_Group": {
  1134. "m_Id": "1b36861b9c89441383dc516d4a021e6d"
  1135. },
  1136. "m_Name": "Divide",
  1137. "m_DrawState": {
  1138. "m_Expanded": true,
  1139. "m_Position": {
  1140. "serializedVersion": "2",
  1141. "x": -1476.5001220703125,
  1142. "y": 132.00001525878907,
  1143. "width": 126.0,
  1144. "height": 118.00003051757813
  1145. }
  1146. },
  1147. "m_Slots": [
  1148. {
  1149. "m_Id": "743971e05d424b9eb4f2a452bf393afa"
  1150. },
  1151. {
  1152. "m_Id": "2d668a74c6f34963abd51d37a9992b54"
  1153. },
  1154. {
  1155. "m_Id": "a3d3f801419d4ba89a1661fd77c9c9f9"
  1156. }
  1157. ],
  1158. "synonyms": [
  1159. "division",
  1160. "divided by"
  1161. ],
  1162. "m_Precision": 0,
  1163. "m_PreviewExpanded": false,
  1164. "m_DismissedVersion": 0,
  1165. "m_PreviewMode": 0,
  1166. "m_CustomColors": {
  1167. "m_SerializableColors": []
  1168. }
  1169. }
  1170. {
  1171. "m_SGVersion": 0,
  1172. "m_Type": "UnityEditor.ShaderGraph.PreviewNode",
  1173. "m_ObjectId": "a8d718227e3c4fca9711d279a90ca5c7",
  1174. "m_Group": {
  1175. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  1176. },
  1177. "m_Name": "Preview",
  1178. "m_DrawState": {
  1179. "m_Expanded": true,
  1180. "m_Position": {
  1181. "serializedVersion": "2",
  1182. "x": -545.5,
  1183. "y": 657.0000610351563,
  1184. "width": 207.99996948242188,
  1185. "height": 278.0
  1186. }
  1187. },
  1188. "m_Slots": [
  1189. {
  1190. "m_Id": "a9c3f62b3cfd43d9acb036a4310e85de"
  1191. },
  1192. {
  1193. "m_Id": "df29222382e64101b3e8dcea1f2f6960"
  1194. }
  1195. ],
  1196. "synonyms": [],
  1197. "m_Precision": 0,
  1198. "m_PreviewExpanded": true,
  1199. "m_DismissedVersion": 0,
  1200. "m_PreviewMode": 0,
  1201. "m_CustomColors": {
  1202. "m_SerializableColors": []
  1203. },
  1204. "m_Width": 208.0,
  1205. "m_Height": 208.0
  1206. }
  1207. {
  1208. "m_SGVersion": 0,
  1209. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1210. "m_ObjectId": "a9c3f62b3cfd43d9acb036a4310e85de",
  1211. "m_Id": 0,
  1212. "m_DisplayName": "In",
  1213. "m_SlotType": 0,
  1214. "m_Hidden": false,
  1215. "m_ShaderOutputName": "In",
  1216. "m_StageCapability": 3,
  1217. "m_Value": {
  1218. "x": 0.0,
  1219. "y": 0.0,
  1220. "z": 0.0,
  1221. "w": 0.0
  1222. },
  1223. "m_DefaultValue": {
  1224. "x": 0.0,
  1225. "y": 0.0,
  1226. "z": 0.0,
  1227. "w": 0.0
  1228. }
  1229. }
  1230. {
  1231. "m_SGVersion": 0,
  1232. "m_Type": "UnityEditor.ShaderGraph.PreviewNode",
  1233. "m_ObjectId": "b4b768b290c34d2bab0cdeb4dbd8cd4a",
  1234. "m_Group": {
  1235. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  1236. },
  1237. "m_Name": "Preview",
  1238. "m_DrawState": {
  1239. "m_Expanded": true,
  1240. "m_Position": {
  1241. "serializedVersion": "2",
  1242. "x": -545.5000610351563,
  1243. "y": 379.0000305175781,
  1244. "width": 208.00003051757813,
  1245. "height": 278.0000305175781
  1246. }
  1247. },
  1248. "m_Slots": [
  1249. {
  1250. "m_Id": "ce3c732f9b7a42fbb0fb7e4a803b8a16"
  1251. },
  1252. {
  1253. "m_Id": "2ee3cc2492a44db89fbfc03e0b7c2c32"
  1254. }
  1255. ],
  1256. "synonyms": [],
  1257. "m_Precision": 0,
  1258. "m_PreviewExpanded": true,
  1259. "m_DismissedVersion": 0,
  1260. "m_PreviewMode": 0,
  1261. "m_CustomColors": {
  1262. "m_SerializableColors": []
  1263. },
  1264. "m_Width": 208.0,
  1265. "m_Height": 208.0
  1266. }
  1267. {
  1268. "m_SGVersion": 0,
  1269. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1270. "m_ObjectId": "be40dd10e01e492bb8f4912e5c2b477f",
  1271. "m_Title": "",
  1272. "m_Content": "You can use the Sign Node with the Normal Vector node to generate masks to tell you if a surface is facing the left or right, top or bottom, and front or back.\n\nThis is useful if you want to do something different on one side of your model from the other.",
  1273. "m_TextSize": 0,
  1274. "m_Theme": 0,
  1275. "m_Position": {
  1276. "serializedVersion": "2",
  1277. "x": -1028.5001220703125,
  1278. "y": 227.00003051757813,
  1279. "width": 200.00006103515626,
  1280. "height": 160.0
  1281. },
  1282. "m_Group": {
  1283. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  1284. }
  1285. }
  1286. {
  1287. "m_SGVersion": 0,
  1288. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1289. "m_ObjectId": "c44f75e542be4b1d9aad9a8686698954",
  1290. "m_Id": 0,
  1291. "m_DisplayName": "In",
  1292. "m_SlotType": 0,
  1293. "m_Hidden": false,
  1294. "m_ShaderOutputName": "In",
  1295. "m_StageCapability": 3,
  1296. "m_Value": {
  1297. "x": 0.0,
  1298. "y": 0.0,
  1299. "z": 0.0,
  1300. "w": 0.0
  1301. },
  1302. "m_DefaultValue": {
  1303. "x": 0.0,
  1304. "y": 0.0,
  1305. "z": 0.0,
  1306. "w": 0.0
  1307. }
  1308. }
  1309. {
  1310. "m_SGVersion": 0,
  1311. "m_Type": "UnityEditor.ShaderGraph.NormalVectorNode",
  1312. "m_ObjectId": "c46ba95bb8d34e3e868a628476bb3825",
  1313. "m_Group": {
  1314. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  1315. },
  1316. "m_Name": "Normal Vector",
  1317. "m_DrawState": {
  1318. "m_Expanded": true,
  1319. "m_Position": {
  1320. "serializedVersion": "2",
  1321. "x": -1282.5001220703125,
  1322. "y": 101.00003051757813,
  1323. "width": 208.0,
  1324. "height": 314.5
  1325. }
  1326. },
  1327. "m_Slots": [
  1328. {
  1329. "m_Id": "670a53da3f6c4a51929dbbe01475de8c"
  1330. }
  1331. ],
  1332. "synonyms": [
  1333. "surface direction"
  1334. ],
  1335. "m_Precision": 0,
  1336. "m_PreviewExpanded": true,
  1337. "m_DismissedVersion": 0,
  1338. "m_PreviewMode": 2,
  1339. "m_CustomColors": {
  1340. "m_SerializableColors": []
  1341. },
  1342. "m_Space": 2
  1343. }
  1344. {
  1345. "m_SGVersion": 0,
  1346. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1347. "m_ObjectId": "caf7f54522824253a3a6894f30daa470",
  1348. "m_Id": 1,
  1349. "m_DisplayName": "X",
  1350. "m_SlotType": 0,
  1351. "m_Hidden": false,
  1352. "m_ShaderOutputName": "X",
  1353. "m_StageCapability": 3,
  1354. "m_Value": 12.0,
  1355. "m_DefaultValue": 0.0,
  1356. "m_Labels": []
  1357. }
  1358. {
  1359. "m_SGVersion": 0,
  1360. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1361. "m_ObjectId": "ccf879a1179e47d782f582aba046abb9",
  1362. "m_Id": 3,
  1363. "m_DisplayName": "B",
  1364. "m_SlotType": 1,
  1365. "m_Hidden": false,
  1366. "m_ShaderOutputName": "B",
  1367. "m_StageCapability": 3,
  1368. "m_Value": 0.0,
  1369. "m_DefaultValue": 0.0,
  1370. "m_Labels": []
  1371. }
  1372. {
  1373. "m_SGVersion": 0,
  1374. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1375. "m_ObjectId": "ce3c732f9b7a42fbb0fb7e4a803b8a16",
  1376. "m_Id": 0,
  1377. "m_DisplayName": "In",
  1378. "m_SlotType": 0,
  1379. "m_Hidden": false,
  1380. "m_ShaderOutputName": "In",
  1381. "m_StageCapability": 3,
  1382. "m_Value": {
  1383. "x": 0.0,
  1384. "y": 0.0,
  1385. "z": 0.0,
  1386. "w": 0.0
  1387. },
  1388. "m_DefaultValue": {
  1389. "x": 0.0,
  1390. "y": 0.0,
  1391. "z": 0.0,
  1392. "w": 0.0
  1393. }
  1394. }
  1395. {
  1396. "m_SGVersion": 0,
  1397. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  1398. "m_ObjectId": "cecb12d106d54edb81c372ca338a2041",
  1399. "m_Title": "Directional Masks",
  1400. "m_Position": {
  1401. "x": 10.0,
  1402. "y": 10.0
  1403. }
  1404. }
  1405. {
  1406. "m_SGVersion": 0,
  1407. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData",
  1408. "m_ObjectId": "cf3f3748da5a475cbf24d1f65cb72581",
  1409. "m_EnableShadowMatte": false,
  1410. "m_DistortionOnly": false
  1411. }
  1412. {
  1413. "m_SGVersion": 0,
  1414. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1415. "m_ObjectId": "d1363e022a614862a6849b88e31dc43f",
  1416. "m_Id": 4,
  1417. "m_DisplayName": "A",
  1418. "m_SlotType": 1,
  1419. "m_Hidden": false,
  1420. "m_ShaderOutputName": "A",
  1421. "m_StageCapability": 3,
  1422. "m_Value": 0.0,
  1423. "m_DefaultValue": 0.0,
  1424. "m_Labels": []
  1425. }
  1426. {
  1427. "m_SGVersion": 0,
  1428. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1429. "m_ObjectId": "d1c8dc7db4f240deb4bfc4af8c16da3d",
  1430. "m_Group": {
  1431. "m_Id": ""
  1432. },
  1433. "m_Name": "SurfaceDescription.Emission",
  1434. "m_DrawState": {
  1435. "m_Expanded": true,
  1436. "m_Position": {
  1437. "serializedVersion": "2",
  1438. "x": 0.0,
  1439. "y": 0.0,
  1440. "width": 0.0,
  1441. "height": 0.0
  1442. }
  1443. },
  1444. "m_Slots": [
  1445. {
  1446. "m_Id": "7b3eeb545b354d29992eec318f7eab13"
  1447. }
  1448. ],
  1449. "synonyms": [],
  1450. "m_Precision": 0,
  1451. "m_PreviewExpanded": true,
  1452. "m_DismissedVersion": 0,
  1453. "m_PreviewMode": 0,
  1454. "m_CustomColors": {
  1455. "m_SerializableColors": []
  1456. },
  1457. "m_SerializedDescriptor": "SurfaceDescription.Emission"
  1458. }
  1459. {
  1460. "m_SGVersion": 2,
  1461. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInTarget",
  1462. "m_ObjectId": "d6c1732b92a44042aea65506096262d2",
  1463. "m_ActiveSubTarget": {
  1464. "m_Id": "3d08ba479c0e402d82c02f635d1dce9d"
  1465. },
  1466. "m_AllowMaterialOverride": false,
  1467. "m_SurfaceType": 0,
  1468. "m_ZWriteControl": 0,
  1469. "m_ZTestMode": 4,
  1470. "m_AlphaMode": 0,
  1471. "m_RenderFace": 2,
  1472. "m_AlphaClip": false,
  1473. "m_CustomEditorGUI": ""
  1474. }
  1475. {
  1476. "m_SGVersion": 0,
  1477. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  1478. "m_ObjectId": "d842d0b357c94c77bb5b06e525ca39e6",
  1479. "m_Distortion": false,
  1480. "m_DistortionMode": 0,
  1481. "m_DistortionDepthTest": true,
  1482. "m_AddPrecomputedVelocity": false,
  1483. "m_TransparentWritesMotionVec": false,
  1484. "m_DepthOffset": false,
  1485. "m_ConservativeDepthOffset": false,
  1486. "m_TransparencyFog": true,
  1487. "m_AlphaTestShadow": false,
  1488. "m_BackThenFrontRendering": false,
  1489. "m_TransparentDepthPrepass": false,
  1490. "m_TransparentDepthPostpass": false,
  1491. "m_TransparentPerPixelSorting": false,
  1492. "m_SupportLodCrossFade": false
  1493. }
  1494. {
  1495. "m_SGVersion": 0,
  1496. "m_Type": "UnityEditor.ShaderGraph.SplitNode",
  1497. "m_ObjectId": "dc076e6dade44c3fa17355d405602560",
  1498. "m_Group": {
  1499. "m_Id": "cecb12d106d54edb81c372ca338a2041"
  1500. },
  1501. "m_Name": "Split",
  1502. "m_DrawState": {
  1503. "m_Expanded": false,
  1504. "m_Position": {
  1505. "serializedVersion": "2",
  1506. "x": -738.0000610351563,
  1507. "y": 101.00000762939453,
  1508. "width": 118.99993896484375,
  1509. "height": 125.00003814697266
  1510. }
  1511. },
  1512. "m_Slots": [
  1513. {
  1514. "m_Id": "7393fd611b6d4f47b12fe9082da7f111"
  1515. },
  1516. {
  1517. "m_Id": "83a9c05bc9c4485c8f029c77ca3e4356"
  1518. },
  1519. {
  1520. "m_Id": "82f311ab62224d59af1763698c911b42"
  1521. },
  1522. {
  1523. "m_Id": "ccf879a1179e47d782f582aba046abb9"
  1524. },
  1525. {
  1526. "m_Id": "d1363e022a614862a6849b88e31dc43f"
  1527. }
  1528. ],
  1529. "synonyms": [
  1530. "separate"
  1531. ],
  1532. "m_Precision": 0,
  1533. "m_PreviewExpanded": true,
  1534. "m_DismissedVersion": 0,
  1535. "m_PreviewMode": 0,
  1536. "m_CustomColors": {
  1537. "m_SerializableColors": []
  1538. }
  1539. }
  1540. {
  1541. "m_SGVersion": 0,
  1542. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1543. "m_ObjectId": "df29222382e64101b3e8dcea1f2f6960",
  1544. "m_Id": 1,
  1545. "m_DisplayName": "Out",
  1546. "m_SlotType": 1,
  1547. "m_Hidden": false,
  1548. "m_ShaderOutputName": "Out",
  1549. "m_StageCapability": 3,
  1550. "m_Value": {
  1551. "x": 0.0,
  1552. "y": 0.0,
  1553. "z": 0.0,
  1554. "w": 0.0
  1555. },
  1556. "m_DefaultValue": {
  1557. "x": 0.0,
  1558. "y": 0.0,
  1559. "z": 0.0,
  1560. "w": 0.0
  1561. }
  1562. }
  1563. {
  1564. "m_SGVersion": 0,
  1565. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  1566. "m_ObjectId": "e620fadba331486fbc9fa17707323f54",
  1567. "m_Id": 0,
  1568. "m_DisplayName": "Base Color",
  1569. "m_SlotType": 0,
  1570. "m_Hidden": false,
  1571. "m_ShaderOutputName": "BaseColor",
  1572. "m_StageCapability": 2,
  1573. "m_Value": {
  1574. "x": 0.5,
  1575. "y": 0.5,
  1576. "z": 0.5
  1577. },
  1578. "m_DefaultValue": {
  1579. "x": 0.0,
  1580. "y": 0.0,
  1581. "z": 0.0
  1582. },
  1583. "m_Labels": [],
  1584. "m_ColorMode": 0,
  1585. "m_DefaultColor": {
  1586. "r": 0.5,
  1587. "g": 0.5,
  1588. "b": 0.5,
  1589. "a": 1.0
  1590. }
  1591. }
  1592. {
  1593. "m_SGVersion": 0,
  1594. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1595. "m_ObjectId": "e625235660d54ce3927040376e0c97b5",
  1596. "m_Group": {
  1597. "m_Id": ""
  1598. },
  1599. "m_Name": "VertexDescription.Position",
  1600. "m_DrawState": {
  1601. "m_Expanded": true,
  1602. "m_Position": {
  1603. "serializedVersion": "2",
  1604. "x": 0.0,
  1605. "y": 0.0,
  1606. "width": 0.0,
  1607. "height": 0.0
  1608. }
  1609. },
  1610. "m_Slots": [
  1611. {
  1612. "m_Id": "367b8236caf6475cbd33804228cb10f2"
  1613. }
  1614. ],
  1615. "synonyms": [],
  1616. "m_Precision": 0,
  1617. "m_PreviewExpanded": true,
  1618. "m_DismissedVersion": 0,
  1619. "m_PreviewMode": 0,
  1620. "m_CustomColors": {
  1621. "m_SerializableColors": []
  1622. },
  1623. "m_SerializedDescriptor": "VertexDescription.Position"
  1624. }
  1625. {
  1626. "m_SGVersion": 0,
  1627. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1628. "m_ObjectId": "e777ca52a62c4f11a65a40c1ed6a001e",
  1629. "m_Title": "",
  1630. "m_Content": "Input value",
  1631. "m_TextSize": 0,
  1632. "m_Theme": 0,
  1633. "m_Position": {
  1634. "serializedVersion": "2",
  1635. "x": -1761.0001220703125,
  1636. "y": 103.50001525878906,
  1637. "width": 80.0,
  1638. "height": 100.0
  1639. },
  1640. "m_Group": {
  1641. "m_Id": "1b36861b9c89441383dc516d4a021e6d"
  1642. }
  1643. }
  1644. {
  1645. "m_SGVersion": 0,
  1646. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1647. "m_ObjectId": "e7a1ba5b66f34b329275304975709bd6",
  1648. "m_Id": 1,
  1649. "m_DisplayName": "Out",
  1650. "m_SlotType": 1,
  1651. "m_Hidden": false,
  1652. "m_ShaderOutputName": "Out",
  1653. "m_StageCapability": 3,
  1654. "m_Value": {
  1655. "x": 0.0,
  1656. "y": 0.0,
  1657. "z": 0.0,
  1658. "w": 0.0
  1659. },
  1660. "m_DefaultValue": {
  1661. "x": 0.0,
  1662. "y": 0.0,
  1663. "z": 0.0,
  1664. "w": 0.0
  1665. }
  1666. }
  1667. {
  1668. "m_SGVersion": 0,
  1669. "m_Type": "UnityEditor.ShaderGraph.SignNode",
  1670. "m_ObjectId": "ea3cd1e82250401cb5c9b5c9adfa49ad",
  1671. "m_Group": {
  1672. "m_Id": ""
  1673. },
  1674. "m_Name": "Sign",
  1675. "m_DrawState": {
  1676. "m_Expanded": true,
  1677. "m_Position": {
  1678. "serializedVersion": "2",
  1679. "x": -1215.0001220703125,
  1680. "y": -90.99999237060547,
  1681. "width": 127.5,
  1682. "height": 93.99998474121094
  1683. }
  1684. },
  1685. "m_Slots": [
  1686. {
  1687. "m_Id": "4a37e39398324784bb000032441bb87b"
  1688. },
  1689. {
  1690. "m_Id": "8c93d87d32434b7d8ed3e3f0741732a6"
  1691. }
  1692. ],
  1693. "synonyms": [],
  1694. "m_Precision": 0,
  1695. "m_PreviewExpanded": false,
  1696. "m_DismissedVersion": 0,
  1697. "m_PreviewMode": 0,
  1698. "m_CustomColors": {
  1699. "m_SerializableColors": []
  1700. }
  1701. }
  1702. {
  1703. "m_SGVersion": 0,
  1704. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  1705. "m_ObjectId": "eec503e49a304e80813f02ae3a7e7793",
  1706. "m_MaterialNeedsUpdateHash": 0,
  1707. "m_SurfaceType": 0,
  1708. "m_RenderingPass": 1,
  1709. "m_BlendMode": 0,
  1710. "m_ZTest": 4,
  1711. "m_ZWrite": false,
  1712. "m_TransparentCullMode": 2,
  1713. "m_OpaqueCullMode": 2,
  1714. "m_SortPriority": 0,
  1715. "m_AlphaTest": false,
  1716. "m_TransparentDepthPrepass": false,
  1717. "m_TransparentDepthPostpass": false,
  1718. "m_SupportLodCrossFade": false,
  1719. "m_DoubleSidedMode": 0,
  1720. "m_DOTSInstancing": false,
  1721. "m_CustomVelocity": false,
  1722. "m_Tessellation": false,
  1723. "m_TessellationMode": 0,
  1724. "m_TessellationFactorMinDistance": 20.0,
  1725. "m_TessellationFactorMaxDistance": 50.0,
  1726. "m_TessellationFactorTriangleSize": 100.0,
  1727. "m_TessellationShapeFactor": 0.75,
  1728. "m_TessellationBackFaceCullEpsilon": -0.25,
  1729. "m_TessellationMaxDisplacement": 0.009999999776482582,
  1730. "m_DebugSymbols": false,
  1731. "m_Version": 2,
  1732. "inspectorFoldoutMask": 0
  1733. }
  1734. {
  1735. "m_SGVersion": 0,
  1736. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1737. "m_ObjectId": "f451e43f57b3411489d0a68044593919",
  1738. "m_Group": {
  1739. "m_Id": ""
  1740. },
  1741. "m_Name": "VertexDescription.Tangent",
  1742. "m_DrawState": {
  1743. "m_Expanded": true,
  1744. "m_Position": {
  1745. "serializedVersion": "2",
  1746. "x": 0.0,
  1747. "y": 0.0,
  1748. "width": 0.0,
  1749. "height": 0.0
  1750. }
  1751. },
  1752. "m_Slots": [
  1753. {
  1754. "m_Id": "28a74eac0b04467485adab27c09d8e9b"
  1755. }
  1756. ],
  1757. "synonyms": [],
  1758. "m_Precision": 0,
  1759. "m_PreviewExpanded": true,
  1760. "m_DismissedVersion": 0,
  1761. "m_PreviewMode": 0,
  1762. "m_CustomColors": {
  1763. "m_SerializableColors": []
  1764. },
  1765. "m_SerializedDescriptor": "VertexDescription.Tangent"
  1766. }
  1767. {
  1768. "m_SGVersion": 0,
  1769. "m_Type": "UnityEditor.ShaderGraph.DynamicVectorMaterialSlot",
  1770. "m_ObjectId": "fa95a05a15a54767887e9001b89a2c12",
  1771. "m_Id": 1,
  1772. "m_DisplayName": "Out",
  1773. "m_SlotType": 1,
  1774. "m_Hidden": false,
  1775. "m_ShaderOutputName": "Out",
  1776. "m_StageCapability": 3,
  1777. "m_Value": {
  1778. "x": 0.0,
  1779. "y": 0.0,
  1780. "z": 0.0,
  1781. "w": 0.0
  1782. },
  1783. "m_DefaultValue": {
  1784. "x": 0.0,
  1785. "y": 0.0,
  1786. "z": 0.0,
  1787. "w": 0.0
  1788. }
  1789. }