Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

SplitTextureTransform.shadergraph 62KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  1. {
  2. "m_SGVersion": 3,
  3. "m_Type": "UnityEditor.ShaderGraph.GraphData",
  4. "m_ObjectId": "3de6f69a278d498db54780635b275639",
  5. "m_Properties": [],
  6. "m_Keywords": [],
  7. "m_Dropdowns": [],
  8. "m_CategoryData": [
  9. {
  10. "m_Id": "658d12ecc7304bc7bf5dce82c2d77157"
  11. }
  12. ],
  13. "m_Nodes": [
  14. {
  15. "m_Id": "81a56b8d6e604be5b40b33276fcd781a"
  16. },
  17. {
  18. "m_Id": "c904cb2ffb6a46658772accca0cd227a"
  19. },
  20. {
  21. "m_Id": "5f38ac0dc2a74ea88a4564e87e928539"
  22. },
  23. {
  24. "m_Id": "60187cfe49a146db9a886f3ef6ca532e"
  25. },
  26. {
  27. "m_Id": "0e8a448d3ed647a18cdddc71d9a5035d"
  28. },
  29. {
  30. "m_Id": "c0b3ce2799dc4d7cafd0cd9c2dbd41a0"
  31. },
  32. {
  33. "m_Id": "f5af9a9b88bf4eb397d20ceb023954f1"
  34. },
  35. {
  36. "m_Id": "ba90a0bb8ebf4322bd9830f9505afc89"
  37. },
  38. {
  39. "m_Id": "e3ef46ee2be54980adb544ed8b0d8020"
  40. },
  41. {
  42. "m_Id": "c590ca5eae2448ae87cb5c924054737e"
  43. },
  44. {
  45. "m_Id": "556d213b8845407791e323946aca3645"
  46. },
  47. {
  48. "m_Id": "e836c64fa0054374a2e3a930cb6abd87"
  49. },
  50. {
  51. "m_Id": "75a5609ad50249448d1e444306296eb7"
  52. },
  53. {
  54. "m_Id": "d2ca2e99812b4cb5b739a4d6a51b727f"
  55. },
  56. {
  57. "m_Id": "e8085508047448a8af6ad6b7512747ee"
  58. },
  59. {
  60. "m_Id": "16933215c53847539d7444a298f3b702"
  61. },
  62. {
  63. "m_Id": "45db35c29252425995e74438a84935f3"
  64. },
  65. {
  66. "m_Id": "c1642979d19046a9a095f842a8bde1b5"
  67. },
  68. {
  69. "m_Id": "54459d3ba2924351aa930532a98738ba"
  70. },
  71. {
  72. "m_Id": "4f7967dc64034e0b91756fdf4c3732b4"
  73. }
  74. ],
  75. "m_GroupDatas": [
  76. {
  77. "m_Id": "e0a052824b0f4d7facf52c835f240295"
  78. },
  79. {
  80. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  81. }
  82. ],
  83. "m_StickyNoteDatas": [
  84. {
  85. "m_Id": "cfaf0278f4f54d55acecf488f916631d"
  86. },
  87. {
  88. "m_Id": "9e3baad26859499abe7a3988d72a03a7"
  89. },
  90. {
  91. "m_Id": "766bf3b074c943bcb28faad97d5a9d7d"
  92. }
  93. ],
  94. "m_Edges": [
  95. {
  96. "m_OutputSlot": {
  97. "m_Node": {
  98. "m_Id": "4f7967dc64034e0b91756fdf4c3732b4"
  99. },
  100. "m_SlotId": 3
  101. },
  102. "m_InputSlot": {
  103. "m_Node": {
  104. "m_Id": "c1642979d19046a9a095f842a8bde1b5"
  105. },
  106. "m_SlotId": 1
  107. }
  108. },
  109. {
  110. "m_OutputSlot": {
  111. "m_Node": {
  112. "m_Id": "54459d3ba2924351aa930532a98738ba"
  113. },
  114. "m_SlotId": 0
  115. },
  116. "m_InputSlot": {
  117. "m_Node": {
  118. "m_Id": "4f7967dc64034e0b91756fdf4c3732b4"
  119. },
  120. "m_SlotId": 0
  121. }
  122. },
  123. {
  124. "m_OutputSlot": {
  125. "m_Node": {
  126. "m_Id": "556d213b8845407791e323946aca3645"
  127. },
  128. "m_SlotId": 3
  129. },
  130. "m_InputSlot": {
  131. "m_Node": {
  132. "m_Id": "45db35c29252425995e74438a84935f3"
  133. },
  134. "m_SlotId": 2
  135. }
  136. },
  137. {
  138. "m_OutputSlot": {
  139. "m_Node": {
  140. "m_Id": "556d213b8845407791e323946aca3645"
  141. },
  142. "m_SlotId": 3
  143. },
  144. "m_InputSlot": {
  145. "m_Node": {
  146. "m_Id": "c1642979d19046a9a095f842a8bde1b5"
  147. },
  148. "m_SlotId": 2
  149. }
  150. },
  151. {
  152. "m_OutputSlot": {
  153. "m_Node": {
  154. "m_Id": "75a5609ad50249448d1e444306296eb7"
  155. },
  156. "m_SlotId": 0
  157. },
  158. "m_InputSlot": {
  159. "m_Node": {
  160. "m_Id": "16933215c53847539d7444a298f3b702"
  161. },
  162. "m_SlotId": 1
  163. }
  164. },
  165. {
  166. "m_OutputSlot": {
  167. "m_Node": {
  168. "m_Id": "75a5609ad50249448d1e444306296eb7"
  169. },
  170. "m_SlotId": 0
  171. },
  172. "m_InputSlot": {
  173. "m_Node": {
  174. "m_Id": "e836c64fa0054374a2e3a930cb6abd87"
  175. },
  176. "m_SlotId": 0
  177. }
  178. },
  179. {
  180. "m_OutputSlot": {
  181. "m_Node": {
  182. "m_Id": "c590ca5eae2448ae87cb5c924054737e"
  183. },
  184. "m_SlotId": 0
  185. },
  186. "m_InputSlot": {
  187. "m_Node": {
  188. "m_Id": "e3ef46ee2be54980adb544ed8b0d8020"
  189. },
  190. "m_SlotId": 0
  191. }
  192. },
  193. {
  194. "m_OutputSlot": {
  195. "m_Node": {
  196. "m_Id": "d2ca2e99812b4cb5b739a4d6a51b727f"
  197. },
  198. "m_SlotId": 0
  199. },
  200. "m_InputSlot": {
  201. "m_Node": {
  202. "m_Id": "e8085508047448a8af6ad6b7512747ee"
  203. },
  204. "m_SlotId": 0
  205. }
  206. },
  207. {
  208. "m_OutputSlot": {
  209. "m_Node": {
  210. "m_Id": "e3ef46ee2be54980adb544ed8b0d8020"
  211. },
  212. "m_SlotId": 3
  213. },
  214. "m_InputSlot": {
  215. "m_Node": {
  216. "m_Id": "ba90a0bb8ebf4322bd9830f9505afc89"
  217. },
  218. "m_SlotId": 1
  219. }
  220. },
  221. {
  222. "m_OutputSlot": {
  223. "m_Node": {
  224. "m_Id": "e8085508047448a8af6ad6b7512747ee"
  225. },
  226. "m_SlotId": 3
  227. },
  228. "m_InputSlot": {
  229. "m_Node": {
  230. "m_Id": "45db35c29252425995e74438a84935f3"
  231. },
  232. "m_SlotId": 1
  233. }
  234. },
  235. {
  236. "m_OutputSlot": {
  237. "m_Node": {
  238. "m_Id": "e836c64fa0054374a2e3a930cb6abd87"
  239. },
  240. "m_SlotId": 1
  241. },
  242. "m_InputSlot": {
  243. "m_Node": {
  244. "m_Id": "556d213b8845407791e323946aca3645"
  245. },
  246. "m_SlotId": 1
  247. }
  248. },
  249. {
  250. "m_OutputSlot": {
  251. "m_Node": {
  252. "m_Id": "e836c64fa0054374a2e3a930cb6abd87"
  253. },
  254. "m_SlotId": 2
  255. },
  256. "m_InputSlot": {
  257. "m_Node": {
  258. "m_Id": "556d213b8845407791e323946aca3645"
  259. },
  260. "m_SlotId": 2
  261. }
  262. }
  263. ],
  264. "m_VertexContext": {
  265. "m_Position": {
  266. "x": 0.0,
  267. "y": 0.0
  268. },
  269. "m_Blocks": [
  270. {
  271. "m_Id": "81a56b8d6e604be5b40b33276fcd781a"
  272. },
  273. {
  274. "m_Id": "c904cb2ffb6a46658772accca0cd227a"
  275. },
  276. {
  277. "m_Id": "5f38ac0dc2a74ea88a4564e87e928539"
  278. }
  279. ]
  280. },
  281. "m_FragmentContext": {
  282. "m_Position": {
  283. "x": 0.0,
  284. "y": 200.0
  285. },
  286. "m_Blocks": [
  287. {
  288. "m_Id": "60187cfe49a146db9a886f3ef6ca532e"
  289. },
  290. {
  291. "m_Id": "0e8a448d3ed647a18cdddc71d9a5035d"
  292. },
  293. {
  294. "m_Id": "c0b3ce2799dc4d7cafd0cd9c2dbd41a0"
  295. }
  296. ]
  297. },
  298. "m_PreviewData": {
  299. "serializedMesh": {
  300. "m_SerializedMesh": "{\"mesh\":{\"instanceID\":0}}",
  301. "m_Guid": ""
  302. },
  303. "preventRotation": false
  304. },
  305. "m_Path": "Shader Graphs",
  306. "m_GraphPrecision": 1,
  307. "m_PreviewMode": 2,
  308. "m_OutputNode": {
  309. "m_Id": ""
  310. },
  311. "m_ActiveTargets": [
  312. {
  313. "m_Id": "0a9c60b043ff4287b3ab88c8ca06a3ca"
  314. },
  315. {
  316. "m_Id": "789967c9c2c9452bbcdbfe59e9806445"
  317. },
  318. {
  319. "m_Id": "5d89afac3f7d43c1a3921a27afdaa385"
  320. }
  321. ]
  322. }
  323. {
  324. "m_SGVersion": 0,
  325. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  326. "m_ObjectId": "002d32c277ff4ed0b163b29e4acef3ca",
  327. "m_Id": 0,
  328. "m_DisplayName": "In",
  329. "m_SlotType": 0,
  330. "m_Hidden": false,
  331. "m_ShaderOutputName": "In",
  332. "m_StageCapability": 3,
  333. "m_BareResource": false,
  334. "m_Texture": {
  335. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  336. "m_Guid": ""
  337. },
  338. "m_DefaultType": 0
  339. }
  340. {
  341. "m_SGVersion": 0,
  342. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  343. "m_ObjectId": "0a87f2f9d06642b2940d221c79824b82",
  344. "m_Id": 1,
  345. "m_DisplayName": "Tiling",
  346. "m_SlotType": 1,
  347. "m_Hidden": false,
  348. "m_ShaderOutputName": "Tiling",
  349. "m_StageCapability": 3,
  350. "m_Value": {
  351. "x": 0.0,
  352. "y": 0.0
  353. },
  354. "m_DefaultValue": {
  355. "x": 0.0,
  356. "y": 0.0
  357. },
  358. "m_Labels": []
  359. }
  360. {
  361. "m_SGVersion": 2,
  362. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInTarget",
  363. "m_ObjectId": "0a9c60b043ff4287b3ab88c8ca06a3ca",
  364. "m_ActiveSubTarget": {
  365. "m_Id": "98a4ecc6280543c68eac05ab3601ec55"
  366. },
  367. "m_AllowMaterialOverride": false,
  368. "m_SurfaceType": 0,
  369. "m_ZWriteControl": 0,
  370. "m_ZTestMode": 4,
  371. "m_AlphaMode": 0,
  372. "m_RenderFace": 2,
  373. "m_AlphaClip": false,
  374. "m_CustomEditorGUI": ""
  375. }
  376. {
  377. "m_SGVersion": 0,
  378. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitData",
  379. "m_ObjectId": "0e1110e38f6f4bf4aacda6c4cc2a14f0",
  380. "m_EnableShadowMatte": false,
  381. "m_DistortionOnly": false
  382. }
  383. {
  384. "m_SGVersion": 0,
  385. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  386. "m_ObjectId": "0e8a448d3ed647a18cdddc71d9a5035d",
  387. "m_Group": {
  388. "m_Id": ""
  389. },
  390. "m_Name": "SurfaceDescription.Emission",
  391. "m_DrawState": {
  392. "m_Expanded": true,
  393. "m_Position": {
  394. "serializedVersion": "2",
  395. "x": 0.0,
  396. "y": 0.0,
  397. "width": 0.0,
  398. "height": 0.0
  399. }
  400. },
  401. "m_Slots": [
  402. {
  403. "m_Id": "5ad48242c2c24f73a0aee7e1da3a0ec0"
  404. }
  405. ],
  406. "synonyms": [],
  407. "m_Precision": 0,
  408. "m_PreviewExpanded": true,
  409. "m_DismissedVersion": 0,
  410. "m_PreviewMode": 0,
  411. "m_CustomColors": {
  412. "m_SerializableColors": []
  413. },
  414. "m_SerializedDescriptor": "SurfaceDescription.Emission"
  415. }
  416. {
  417. "m_SGVersion": 0,
  418. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  419. "m_ObjectId": "10c6c4fa9530459f9eb9c33d7a2e522d",
  420. "m_Id": 0,
  421. "m_DisplayName": "RGBA",
  422. "m_SlotType": 1,
  423. "m_Hidden": false,
  424. "m_ShaderOutputName": "RGBA",
  425. "m_StageCapability": 2,
  426. "m_Value": {
  427. "x": 0.0,
  428. "y": 0.0,
  429. "z": 0.0,
  430. "w": 0.0
  431. },
  432. "m_DefaultValue": {
  433. "x": 0.0,
  434. "y": 0.0,
  435. "z": 0.0,
  436. "w": 0.0
  437. },
  438. "m_Labels": []
  439. }
  440. {
  441. "m_SGVersion": 0,
  442. "m_Type": "UnityEditor.ShaderGraph.TangentMaterialSlot",
  443. "m_ObjectId": "1587efc28c7b498ba788558b058cbf0c",
  444. "m_Id": 0,
  445. "m_DisplayName": "Tangent",
  446. "m_SlotType": 0,
  447. "m_Hidden": false,
  448. "m_ShaderOutputName": "Tangent",
  449. "m_StageCapability": 1,
  450. "m_Value": {
  451. "x": 0.0,
  452. "y": 0.0,
  453. "z": 0.0
  454. },
  455. "m_DefaultValue": {
  456. "x": 0.0,
  457. "y": 0.0,
  458. "z": 0.0
  459. },
  460. "m_Labels": [],
  461. "m_Space": 0
  462. }
  463. {
  464. "m_SGVersion": 0,
  465. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  466. "m_ObjectId": "16933215c53847539d7444a298f3b702",
  467. "m_Group": {
  468. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  469. },
  470. "m_Name": "Sample Texture 2D",
  471. "m_DrawState": {
  472. "m_Expanded": false,
  473. "m_Position": {
  474. "serializedVersion": "2",
  475. "x": -374.99993896484377,
  476. "y": 394.00006103515627,
  477. "width": 207.99996948242188,
  478. "height": 338.0
  479. }
  480. },
  481. "m_Slots": [
  482. {
  483. "m_Id": "10c6c4fa9530459f9eb9c33d7a2e522d"
  484. },
  485. {
  486. "m_Id": "84acc85fb1ea48ecb5a33e7d35fe3bb2"
  487. },
  488. {
  489. "m_Id": "6d972e19e73544d7b17582d61d050f8c"
  490. },
  491. {
  492. "m_Id": "d93c88789b8a427b93c345cb85fe7b03"
  493. },
  494. {
  495. "m_Id": "371950479b704053ae73211065ff4ded"
  496. },
  497. {
  498. "m_Id": "715aafe9a546441ca3003df424afb49e"
  499. },
  500. {
  501. "m_Id": "5e602965c55a40aebfd1302687183657"
  502. },
  503. {
  504. "m_Id": "3ae1158545e44f2989badb717809c848"
  505. }
  506. ],
  507. "synonyms": [
  508. "tex2d"
  509. ],
  510. "m_Precision": 0,
  511. "m_PreviewExpanded": true,
  512. "m_DismissedVersion": 0,
  513. "m_PreviewMode": 0,
  514. "m_CustomColors": {
  515. "m_SerializableColors": []
  516. },
  517. "m_TextureType": 0,
  518. "m_NormalMapSpace": 0,
  519. "m_EnableGlobalMipBias": true,
  520. "m_MipSamplingMode": 0
  521. }
  522. {
  523. "m_SGVersion": 0,
  524. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  525. "m_ObjectId": "2447b5683b844b8685f1d0504c7d5cfb",
  526. "m_Id": 3,
  527. "m_DisplayName": "Texture Only",
  528. "m_SlotType": 1,
  529. "m_Hidden": false,
  530. "m_ShaderOutputName": "TextureOnly",
  531. "m_StageCapability": 3,
  532. "m_BareResource": false
  533. }
  534. {
  535. "m_SGVersion": 0,
  536. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  537. "m_ObjectId": "28615cb0c2a14114a431fa56b186fa8d",
  538. "m_Id": 3,
  539. "m_DisplayName": "Texture Only",
  540. "m_SlotType": 1,
  541. "m_Hidden": false,
  542. "m_ShaderOutputName": "TextureOnly",
  543. "m_StageCapability": 3,
  544. "m_BareResource": false
  545. }
  546. {
  547. "m_SGVersion": 0,
  548. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  549. "m_ObjectId": "2882bbafa27b40449e871d5ea5a1a46d",
  550. "m_Id": 3,
  551. "m_DisplayName": "Sampler",
  552. "m_SlotType": 0,
  553. "m_Hidden": false,
  554. "m_ShaderOutputName": "Sampler",
  555. "m_StageCapability": 3,
  556. "m_BareResource": false
  557. }
  558. {
  559. "m_SGVersion": 0,
  560. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  561. "m_ObjectId": "32ab7895d4d94041a59a75dfc6942fc7",
  562. "m_Id": 0,
  563. "m_DisplayName": "Alpha",
  564. "m_SlotType": 0,
  565. "m_Hidden": false,
  566. "m_ShaderOutputName": "Alpha",
  567. "m_StageCapability": 2,
  568. "m_Value": 1.0,
  569. "m_DefaultValue": 1.0,
  570. "m_Labels": []
  571. }
  572. {
  573. "m_SGVersion": 0,
  574. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  575. "m_ObjectId": "371950479b704053ae73211065ff4ded",
  576. "m_Id": 7,
  577. "m_DisplayName": "A",
  578. "m_SlotType": 1,
  579. "m_Hidden": false,
  580. "m_ShaderOutputName": "A",
  581. "m_StageCapability": 2,
  582. "m_Value": 0.0,
  583. "m_DefaultValue": 0.0,
  584. "m_Labels": []
  585. }
  586. {
  587. "m_SGVersion": 0,
  588. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  589. "m_ObjectId": "3ae1158545e44f2989badb717809c848",
  590. "m_Id": 3,
  591. "m_DisplayName": "Sampler",
  592. "m_SlotType": 0,
  593. "m_Hidden": false,
  594. "m_ShaderOutputName": "Sampler",
  595. "m_StageCapability": 3,
  596. "m_BareResource": false
  597. }
  598. {
  599. "m_SGVersion": 0,
  600. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  601. "m_ObjectId": "3fea36ac26404ba6ad680a007f1e2deb",
  602. "m_Title": "Using Tiling and Offset for Multiple Textures",
  603. "m_Position": {
  604. "x": -1066.0,
  605. "y": 335.5000915527344
  606. }
  607. }
  608. {
  609. "m_SGVersion": 0,
  610. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  611. "m_ObjectId": "4166b9a1072d440192549ad3056cfb59",
  612. "m_Id": 7,
  613. "m_DisplayName": "A",
  614. "m_SlotType": 1,
  615. "m_Hidden": false,
  616. "m_ShaderOutputName": "A",
  617. "m_StageCapability": 2,
  618. "m_Value": 0.0,
  619. "m_DefaultValue": 0.0,
  620. "m_Labels": []
  621. }
  622. {
  623. "m_SGVersion": 0,
  624. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  625. "m_ObjectId": "45db35c29252425995e74438a84935f3",
  626. "m_Group": {
  627. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  628. },
  629. "m_Name": "Sample Texture 2D",
  630. "m_DrawState": {
  631. "m_Expanded": false,
  632. "m_Position": {
  633. "serializedVersion": "2",
  634. "x": -374.99993896484377,
  635. "y": 748.5000610351563,
  636. "width": 207.99996948242188,
  637. "height": 362.00018310546877
  638. }
  639. },
  640. "m_Slots": [
  641. {
  642. "m_Id": "88ce0ab31cf94f8c8fc477296174256e"
  643. },
  644. {
  645. "m_Id": "a8b76c03eef84cd79260cad828a7a68c"
  646. },
  647. {
  648. "m_Id": "f98c5edc4f44437dbde57970a9e60ad3"
  649. },
  650. {
  651. "m_Id": "b2e153d9475748799227577c8c26aa31"
  652. },
  653. {
  654. "m_Id": "b950cba0fa854e04b79b01452aff4223"
  655. },
  656. {
  657. "m_Id": "d669ed982bf346988f202fb5b6dbf6e8"
  658. },
  659. {
  660. "m_Id": "f404780c022d4b71a5234786ef22c25f"
  661. },
  662. {
  663. "m_Id": "f658097580af44cfb53d5ee25d2ec82f"
  664. }
  665. ],
  666. "synonyms": [
  667. "tex2d"
  668. ],
  669. "m_Precision": 0,
  670. "m_PreviewExpanded": true,
  671. "m_DismissedVersion": 0,
  672. "m_PreviewMode": 0,
  673. "m_CustomColors": {
  674. "m_SerializableColors": []
  675. },
  676. "m_TextureType": 1,
  677. "m_NormalMapSpace": 0,
  678. "m_EnableGlobalMipBias": true,
  679. "m_MipSamplingMode": 0
  680. }
  681. {
  682. "m_SGVersion": 0,
  683. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  684. "m_ObjectId": "4c464f2e78a949e4a712f41be9d4885a",
  685. "m_Id": 2,
  686. "m_DisplayName": "Offset",
  687. "m_SlotType": 1,
  688. "m_Hidden": false,
  689. "m_ShaderOutputName": "Offset",
  690. "m_StageCapability": 3,
  691. "m_Value": {
  692. "x": 0.0,
  693. "y": 0.0
  694. },
  695. "m_DefaultValue": {
  696. "x": 0.0,
  697. "y": 0.0
  698. },
  699. "m_Labels": []
  700. }
  701. {
  702. "m_SGVersion": 0,
  703. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  704. "m_ObjectId": "4c6a53b037d141c8aab78ff0dbbef3c6",
  705. "m_Id": 1,
  706. "m_DisplayName": "Tiling",
  707. "m_SlotType": 1,
  708. "m_Hidden": false,
  709. "m_ShaderOutputName": "Tiling",
  710. "m_StageCapability": 3,
  711. "m_Value": {
  712. "x": 0.0,
  713. "y": 0.0
  714. },
  715. "m_DefaultValue": {
  716. "x": 0.0,
  717. "y": 0.0
  718. },
  719. "m_Labels": []
  720. }
  721. {
  722. "m_SGVersion": 0,
  723. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  724. "m_ObjectId": "4cdae097d44f4f7ea8201eb9d2018a32",
  725. "m_Id": 6,
  726. "m_DisplayName": "B",
  727. "m_SlotType": 1,
  728. "m_Hidden": false,
  729. "m_ShaderOutputName": "B",
  730. "m_StageCapability": 2,
  731. "m_Value": 0.0,
  732. "m_DefaultValue": 0.0,
  733. "m_Labels": []
  734. }
  735. {
  736. "m_SGVersion": 0,
  737. "m_Type": "UnityEditor.ShaderGraph.SplitTextureTransformNode",
  738. "m_ObjectId": "4f7967dc64034e0b91756fdf4c3732b4",
  739. "m_Group": {
  740. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  741. },
  742. "m_Name": "Split Texture Transform",
  743. "m_DrawState": {
  744. "m_Expanded": false,
  745. "m_Position": {
  746. "serializedVersion": "2",
  747. "x": -855.0001220703125,
  748. "y": 1110.5001220703125,
  749. "width": 192.00006103515626,
  750. "height": 77.0
  751. }
  752. },
  753. "m_Slots": [
  754. {
  755. "m_Id": "65646ca2b4814ec7aeefaee13483f4ec"
  756. },
  757. {
  758. "m_Id": "a0f0576846c54b8296456a0fde632a8a"
  759. },
  760. {
  761. "m_Id": "97ed336f191c416eb773fb941d515cde"
  762. },
  763. {
  764. "m_Id": "28615cb0c2a14114a431fa56b186fa8d"
  765. }
  766. ],
  767. "synonyms": [],
  768. "m_Precision": 0,
  769. "m_PreviewExpanded": true,
  770. "m_DismissedVersion": 0,
  771. "m_PreviewMode": 0,
  772. "m_CustomColors": {
  773. "m_SerializableColors": []
  774. }
  775. }
  776. {
  777. "m_SGVersion": 0,
  778. "m_Type": "UnityEditor.ShaderGraph.Texture2DAssetNode",
  779. "m_ObjectId": "54459d3ba2924351aa930532a98738ba",
  780. "m_Group": {
  781. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  782. },
  783. "m_Name": "Texture 2D Asset",
  784. "m_DrawState": {
  785. "m_Expanded": true,
  786. "m_Position": {
  787. "serializedVersion": "2",
  788. "x": -1015.0001220703125,
  789. "y": 1110.5001220703125,
  790. "width": 143.5,
  791. "height": 106.0
  792. }
  793. },
  794. "m_Slots": [
  795. {
  796. "m_Id": "8726bac1e5ca48448280ddcabd325e08"
  797. }
  798. ],
  799. "synonyms": [],
  800. "m_Precision": 0,
  801. "m_PreviewExpanded": true,
  802. "m_DismissedVersion": 0,
  803. "m_PreviewMode": 0,
  804. "m_CustomColors": {
  805. "m_SerializableColors": []
  806. },
  807. "m_Texture": {
  808. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"046e8c3035707834da517db833a8c498\",\"type\":3}}",
  809. "m_Guid": ""
  810. }
  811. }
  812. {
  813. "m_SGVersion": 0,
  814. "m_Type": "UnityEditor.ShaderGraph.TilingAndOffsetNode",
  815. "m_ObjectId": "556d213b8845407791e323946aca3645",
  816. "m_Group": {
  817. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  818. },
  819. "m_Name": "Tiling And Offset",
  820. "m_DrawState": {
  821. "m_Expanded": true,
  822. "m_Position": {
  823. "serializedVersion": "2",
  824. "x": -567.9999389648438,
  825. "y": 825.5000610351563,
  826. "width": 153.49990844726563,
  827. "height": 142.0
  828. }
  829. },
  830. "m_Slots": [
  831. {
  832. "m_Id": "ac7b83eced9b4048aa968b20fb9141d3"
  833. },
  834. {
  835. "m_Id": "f9d8870533c845b185591df858baec86"
  836. },
  837. {
  838. "m_Id": "590897dcf2a84e6b89f9471ce81b082a"
  839. },
  840. {
  841. "m_Id": "7dbec64ccbf44b858c5d551db3668239"
  842. }
  843. ],
  844. "synonyms": [
  845. "pan",
  846. "scale"
  847. ],
  848. "m_Precision": 0,
  849. "m_PreviewExpanded": false,
  850. "m_DismissedVersion": 0,
  851. "m_PreviewMode": 0,
  852. "m_CustomColors": {
  853. "m_SerializableColors": []
  854. }
  855. }
  856. {
  857. "m_SGVersion": 0,
  858. "m_Type": "UnityEditor.ShaderGraph.PositionMaterialSlot",
  859. "m_ObjectId": "56cc6838918e46ee86306176bd57b924",
  860. "m_Id": 0,
  861. "m_DisplayName": "Position",
  862. "m_SlotType": 0,
  863. "m_Hidden": false,
  864. "m_ShaderOutputName": "Position",
  865. "m_StageCapability": 1,
  866. "m_Value": {
  867. "x": 0.0,
  868. "y": 0.0,
  869. "z": 0.0
  870. },
  871. "m_DefaultValue": {
  872. "x": 0.0,
  873. "y": 0.0,
  874. "z": 0.0
  875. },
  876. "m_Labels": [],
  877. "m_Space": 0
  878. }
  879. {
  880. "m_SGVersion": 0,
  881. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  882. "m_ObjectId": "58bc06075f32483099fe5b05f7d9f914",
  883. "m_Id": 1,
  884. "m_DisplayName": "Texture",
  885. "m_SlotType": 0,
  886. "m_Hidden": false,
  887. "m_ShaderOutputName": "Texture",
  888. "m_StageCapability": 3,
  889. "m_BareResource": false,
  890. "m_Texture": {
  891. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  892. "m_Guid": ""
  893. },
  894. "m_DefaultType": 0
  895. }
  896. {
  897. "m_SGVersion": 0,
  898. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  899. "m_ObjectId": "590897dcf2a84e6b89f9471ce81b082a",
  900. "m_Id": 2,
  901. "m_DisplayName": "Offset",
  902. "m_SlotType": 0,
  903. "m_Hidden": false,
  904. "m_ShaderOutputName": "Offset",
  905. "m_StageCapability": 3,
  906. "m_Value": {
  907. "x": 0.0,
  908. "y": 0.0
  909. },
  910. "m_DefaultValue": {
  911. "x": 0.0,
  912. "y": 0.0
  913. },
  914. "m_Labels": []
  915. }
  916. {
  917. "m_SGVersion": 0,
  918. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  919. "m_ObjectId": "59884ce9b8ee4449b6fd4c9edc3c3abd",
  920. "m_Id": 0,
  921. "m_DisplayName": "RGBA",
  922. "m_SlotType": 1,
  923. "m_Hidden": false,
  924. "m_ShaderOutputName": "RGBA",
  925. "m_StageCapability": 2,
  926. "m_Value": {
  927. "x": 0.0,
  928. "y": 0.0,
  929. "z": 0.0,
  930. "w": 0.0
  931. },
  932. "m_DefaultValue": {
  933. "x": 0.0,
  934. "y": 0.0,
  935. "z": 0.0,
  936. "w": 0.0
  937. },
  938. "m_Labels": []
  939. }
  940. {
  941. "m_SGVersion": 0,
  942. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  943. "m_ObjectId": "5ad48242c2c24f73a0aee7e1da3a0ec0",
  944. "m_Id": 0,
  945. "m_DisplayName": "Emission",
  946. "m_SlotType": 0,
  947. "m_Hidden": false,
  948. "m_ShaderOutputName": "Emission",
  949. "m_StageCapability": 2,
  950. "m_Value": {
  951. "x": 0.0,
  952. "y": 0.0,
  953. "z": 0.0
  954. },
  955. "m_DefaultValue": {
  956. "x": 0.0,
  957. "y": 0.0,
  958. "z": 0.0
  959. },
  960. "m_Labels": [],
  961. "m_ColorMode": 1,
  962. "m_DefaultColor": {
  963. "r": 0.0,
  964. "g": 0.0,
  965. "b": 0.0,
  966. "a": 1.0
  967. }
  968. }
  969. {
  970. "m_SGVersion": 1,
  971. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalTarget",
  972. "m_ObjectId": "5d89afac3f7d43c1a3921a27afdaa385",
  973. "m_Datas": [],
  974. "m_ActiveSubTarget": {
  975. "m_Id": "e39c3db98e2d43a6bde4681d0c7a887e"
  976. },
  977. "m_AllowMaterialOverride": false,
  978. "m_SurfaceType": 0,
  979. "m_ZTestMode": 4,
  980. "m_ZWriteControl": 0,
  981. "m_AlphaMode": 0,
  982. "m_RenderFace": 2,
  983. "m_AlphaClip": false,
  984. "m_CastShadows": true,
  985. "m_ReceiveShadows": true,
  986. "m_AdditionalMotionVectorMode": 0,
  987. "m_AlembicMotionVectors": false,
  988. "m_SupportsLODCrossFade": false,
  989. "m_CustomEditorGUI": "",
  990. "m_SupportVFX": false
  991. }
  992. {
  993. "m_SGVersion": 0,
  994. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  995. "m_ObjectId": "5e602965c55a40aebfd1302687183657",
  996. "m_Id": 2,
  997. "m_DisplayName": "UV",
  998. "m_SlotType": 0,
  999. "m_Hidden": false,
  1000. "m_ShaderOutputName": "UV",
  1001. "m_StageCapability": 3,
  1002. "m_Value": {
  1003. "x": 0.0,
  1004. "y": 0.0
  1005. },
  1006. "m_DefaultValue": {
  1007. "x": 0.0,
  1008. "y": 0.0
  1009. },
  1010. "m_Labels": [],
  1011. "m_Channel": 0
  1012. }
  1013. {
  1014. "m_SGVersion": 0,
  1015. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1016. "m_ObjectId": "5f38ac0dc2a74ea88a4564e87e928539",
  1017. "m_Group": {
  1018. "m_Id": ""
  1019. },
  1020. "m_Name": "VertexDescription.Tangent",
  1021. "m_DrawState": {
  1022. "m_Expanded": true,
  1023. "m_Position": {
  1024. "serializedVersion": "2",
  1025. "x": 0.0,
  1026. "y": 0.0,
  1027. "width": 0.0,
  1028. "height": 0.0
  1029. }
  1030. },
  1031. "m_Slots": [
  1032. {
  1033. "m_Id": "1587efc28c7b498ba788558b058cbf0c"
  1034. }
  1035. ],
  1036. "synonyms": [],
  1037. "m_Precision": 0,
  1038. "m_PreviewExpanded": true,
  1039. "m_DismissedVersion": 0,
  1040. "m_PreviewMode": 0,
  1041. "m_CustomColors": {
  1042. "m_SerializableColors": []
  1043. },
  1044. "m_SerializedDescriptor": "VertexDescription.Tangent"
  1045. }
  1046. {
  1047. "m_SGVersion": 0,
  1048. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1049. "m_ObjectId": "60187cfe49a146db9a886f3ef6ca532e",
  1050. "m_Group": {
  1051. "m_Id": ""
  1052. },
  1053. "m_Name": "SurfaceDescription.BaseColor",
  1054. "m_DrawState": {
  1055. "m_Expanded": true,
  1056. "m_Position": {
  1057. "serializedVersion": "2",
  1058. "x": 0.0,
  1059. "y": 0.0,
  1060. "width": 0.0,
  1061. "height": 0.0
  1062. }
  1063. },
  1064. "m_Slots": [
  1065. {
  1066. "m_Id": "8422ab8ac9654b18908a7c6354a54f01"
  1067. }
  1068. ],
  1069. "synonyms": [],
  1070. "m_Precision": 0,
  1071. "m_PreviewExpanded": true,
  1072. "m_DismissedVersion": 0,
  1073. "m_PreviewMode": 0,
  1074. "m_CustomColors": {
  1075. "m_SerializableColors": []
  1076. },
  1077. "m_SerializedDescriptor": "SurfaceDescription.BaseColor"
  1078. }
  1079. {
  1080. "m_SGVersion": 0,
  1081. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  1082. "m_ObjectId": "65646ca2b4814ec7aeefaee13483f4ec",
  1083. "m_Id": 0,
  1084. "m_DisplayName": "In",
  1085. "m_SlotType": 0,
  1086. "m_Hidden": false,
  1087. "m_ShaderOutputName": "In",
  1088. "m_StageCapability": 3,
  1089. "m_BareResource": false,
  1090. "m_Texture": {
  1091. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  1092. "m_Guid": ""
  1093. },
  1094. "m_DefaultType": 0
  1095. }
  1096. {
  1097. "m_SGVersion": 0,
  1098. "m_Type": "UnityEditor.ShaderGraph.CategoryData",
  1099. "m_ObjectId": "658d12ecc7304bc7bf5dce82c2d77157",
  1100. "m_Name": "",
  1101. "m_ChildObjectList": []
  1102. }
  1103. {
  1104. "m_SGVersion": 0,
  1105. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1106. "m_ObjectId": "682b9b20ade540f9b9e11d21bae27956",
  1107. "m_Id": 2,
  1108. "m_DisplayName": "Offset",
  1109. "m_SlotType": 1,
  1110. "m_Hidden": false,
  1111. "m_ShaderOutputName": "Offset",
  1112. "m_StageCapability": 3,
  1113. "m_Value": {
  1114. "x": 0.0,
  1115. "y": 0.0
  1116. },
  1117. "m_DefaultValue": {
  1118. "x": 0.0,
  1119. "y": 0.0
  1120. },
  1121. "m_Labels": []
  1122. }
  1123. {
  1124. "m_SGVersion": 0,
  1125. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1126. "m_ObjectId": "6a59138b182643b9a5be9551224ce4ce",
  1127. "m_Id": 5,
  1128. "m_DisplayName": "G",
  1129. "m_SlotType": 1,
  1130. "m_Hidden": false,
  1131. "m_ShaderOutputName": "G",
  1132. "m_StageCapability": 2,
  1133. "m_Value": 0.0,
  1134. "m_DefaultValue": 0.0,
  1135. "m_Labels": []
  1136. }
  1137. {
  1138. "m_SGVersion": 0,
  1139. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1140. "m_ObjectId": "6d972e19e73544d7b17582d61d050f8c",
  1141. "m_Id": 5,
  1142. "m_DisplayName": "G",
  1143. "m_SlotType": 1,
  1144. "m_Hidden": false,
  1145. "m_ShaderOutputName": "G",
  1146. "m_StageCapability": 2,
  1147. "m_Value": 0.0,
  1148. "m_DefaultValue": 0.0,
  1149. "m_Labels": []
  1150. }
  1151. {
  1152. "m_SGVersion": 0,
  1153. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  1154. "m_ObjectId": "715aafe9a546441ca3003df424afb49e",
  1155. "m_Id": 1,
  1156. "m_DisplayName": "Texture",
  1157. "m_SlotType": 0,
  1158. "m_Hidden": false,
  1159. "m_ShaderOutputName": "Texture",
  1160. "m_StageCapability": 3,
  1161. "m_BareResource": false,
  1162. "m_Texture": {
  1163. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  1164. "m_Guid": ""
  1165. },
  1166. "m_DefaultType": 0
  1167. }
  1168. {
  1169. "m_SGVersion": 0,
  1170. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1171. "m_ObjectId": "721db6fef1c94fdc81a88301e87d3814",
  1172. "m_Id": 4,
  1173. "m_DisplayName": "R",
  1174. "m_SlotType": 1,
  1175. "m_Hidden": false,
  1176. "m_ShaderOutputName": "R",
  1177. "m_StageCapability": 2,
  1178. "m_Value": 0.0,
  1179. "m_DefaultValue": 0.0,
  1180. "m_Labels": []
  1181. }
  1182. {
  1183. "m_SGVersion": 0,
  1184. "m_Type": "UnityEditor.ShaderGraph.Texture2DAssetNode",
  1185. "m_ObjectId": "75a5609ad50249448d1e444306296eb7",
  1186. "m_Group": {
  1187. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  1188. },
  1189. "m_Name": "Texture 2D Asset",
  1190. "m_DrawState": {
  1191. "m_Expanded": true,
  1192. "m_Position": {
  1193. "serializedVersion": "2",
  1194. "x": -1041.0,
  1195. "y": 394.00006103515627,
  1196. "width": 143.49993896484376,
  1197. "height": 106.00003051757813
  1198. }
  1199. },
  1200. "m_Slots": [
  1201. {
  1202. "m_Id": "7e7a0195f6874468862b2c101bc09444"
  1203. }
  1204. ],
  1205. "synonyms": [],
  1206. "m_Precision": 0,
  1207. "m_PreviewExpanded": true,
  1208. "m_DismissedVersion": 0,
  1209. "m_PreviewMode": 0,
  1210. "m_CustomColors": {
  1211. "m_SerializableColors": []
  1212. },
  1213. "m_Texture": {
  1214. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"583384ba064432b41891bec94e35c8af\",\"type\":3}}",
  1215. "m_Guid": ""
  1216. }
  1217. }
  1218. {
  1219. "m_SGVersion": 0,
  1220. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1221. "m_ObjectId": "766bf3b074c943bcb28faad97d5a9d7d",
  1222. "m_Title": "",
  1223. "m_Content": "In this example, we're using the tiling and offset values from the albedo texture for the albedo as well as the normal map and height map. So in the settings, you could just change the tiling and offset for the albedo and it would be applied to all three.",
  1224. "m_TextSize": 0,
  1225. "m_Theme": 0,
  1226. "m_Position": {
  1227. "serializedVersion": "2",
  1228. "x": -896.0000610351563,
  1229. "y": 1339.0001220703125,
  1230. "width": 200.0,
  1231. "height": 131.8421630859375
  1232. },
  1233. "m_Group": {
  1234. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  1235. }
  1236. }
  1237. {
  1238. "m_SGVersion": 0,
  1239. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1240. "m_ObjectId": "77117161560e49d6bfba4c47ca409d47",
  1241. "m_Id": 1,
  1242. "m_DisplayName": "Tiling",
  1243. "m_SlotType": 1,
  1244. "m_Hidden": false,
  1245. "m_ShaderOutputName": "Tiling",
  1246. "m_StageCapability": 3,
  1247. "m_Value": {
  1248. "x": 0.0,
  1249. "y": 0.0
  1250. },
  1251. "m_DefaultValue": {
  1252. "x": 0.0,
  1253. "y": 0.0
  1254. },
  1255. "m_Labels": []
  1256. }
  1257. {
  1258. "m_SGVersion": 0,
  1259. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDTarget",
  1260. "m_ObjectId": "789967c9c2c9452bbcdbfe59e9806445",
  1261. "m_ActiveSubTarget": {
  1262. "m_Id": "b7aa968dec8a4f45978aec2c9b830acd"
  1263. },
  1264. "m_Datas": [
  1265. {
  1266. "m_Id": "c4b432566b11497fbf54aeb99530eda1"
  1267. },
  1268. {
  1269. "m_Id": "ea1e3f483e084b43b03c5b113fbbe61f"
  1270. },
  1271. {
  1272. "m_Id": "0e1110e38f6f4bf4aacda6c4cc2a14f0"
  1273. }
  1274. ],
  1275. "m_CustomEditorGUI": "",
  1276. "m_SupportVFX": false,
  1277. "m_SupportLineRendering": false
  1278. }
  1279. {
  1280. "m_SGVersion": 0,
  1281. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1282. "m_ObjectId": "7dbec64ccbf44b858c5d551db3668239",
  1283. "m_Id": 3,
  1284. "m_DisplayName": "Out",
  1285. "m_SlotType": 1,
  1286. "m_Hidden": false,
  1287. "m_ShaderOutputName": "Out",
  1288. "m_StageCapability": 3,
  1289. "m_Value": {
  1290. "x": 0.0,
  1291. "y": 0.0
  1292. },
  1293. "m_DefaultValue": {
  1294. "x": 0.0,
  1295. "y": 0.0
  1296. },
  1297. "m_Labels": []
  1298. }
  1299. {
  1300. "m_SGVersion": 0,
  1301. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1302. "m_ObjectId": "7e7a0195f6874468862b2c101bc09444",
  1303. "m_Id": 0,
  1304. "m_DisplayName": "Out",
  1305. "m_SlotType": 1,
  1306. "m_Hidden": false,
  1307. "m_ShaderOutputName": "Out",
  1308. "m_StageCapability": 3,
  1309. "m_BareResource": false
  1310. }
  1311. {
  1312. "m_SGVersion": 0,
  1313. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1314. "m_ObjectId": "81a56b8d6e604be5b40b33276fcd781a",
  1315. "m_Group": {
  1316. "m_Id": ""
  1317. },
  1318. "m_Name": "VertexDescription.Position",
  1319. "m_DrawState": {
  1320. "m_Expanded": true,
  1321. "m_Position": {
  1322. "serializedVersion": "2",
  1323. "x": 0.0,
  1324. "y": 0.0,
  1325. "width": 0.0,
  1326. "height": 0.0
  1327. }
  1328. },
  1329. "m_Slots": [
  1330. {
  1331. "m_Id": "56cc6838918e46ee86306176bd57b924"
  1332. }
  1333. ],
  1334. "synonyms": [],
  1335. "m_Precision": 0,
  1336. "m_PreviewExpanded": true,
  1337. "m_DismissedVersion": 0,
  1338. "m_PreviewMode": 0,
  1339. "m_CustomColors": {
  1340. "m_SerializableColors": []
  1341. },
  1342. "m_SerializedDescriptor": "VertexDescription.Position"
  1343. }
  1344. {
  1345. "m_SGVersion": 0,
  1346. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  1347. "m_ObjectId": "81f1d30ee98448d38f70bcd22c7f3c3f",
  1348. "m_Id": 2,
  1349. "m_DisplayName": "UV",
  1350. "m_SlotType": 0,
  1351. "m_Hidden": false,
  1352. "m_ShaderOutputName": "UV",
  1353. "m_StageCapability": 3,
  1354. "m_Value": {
  1355. "x": 0.0,
  1356. "y": 0.0
  1357. },
  1358. "m_DefaultValue": {
  1359. "x": 0.0,
  1360. "y": 0.0
  1361. },
  1362. "m_Labels": [],
  1363. "m_Channel": 0
  1364. }
  1365. {
  1366. "m_SGVersion": 0,
  1367. "m_Type": "UnityEditor.ShaderGraph.ColorRGBMaterialSlot",
  1368. "m_ObjectId": "8422ab8ac9654b18908a7c6354a54f01",
  1369. "m_Id": 0,
  1370. "m_DisplayName": "Base Color",
  1371. "m_SlotType": 0,
  1372. "m_Hidden": false,
  1373. "m_ShaderOutputName": "BaseColor",
  1374. "m_StageCapability": 2,
  1375. "m_Value": {
  1376. "x": 0.5,
  1377. "y": 0.5,
  1378. "z": 0.5
  1379. },
  1380. "m_DefaultValue": {
  1381. "x": 0.0,
  1382. "y": 0.0,
  1383. "z": 0.0
  1384. },
  1385. "m_Labels": [],
  1386. "m_ColorMode": 0,
  1387. "m_DefaultColor": {
  1388. "r": 0.5,
  1389. "g": 0.5,
  1390. "b": 0.5,
  1391. "a": 1.0
  1392. }
  1393. }
  1394. {
  1395. "m_SGVersion": 0,
  1396. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1397. "m_ObjectId": "8431171993dc4933b6913745d8868059",
  1398. "m_Id": 5,
  1399. "m_DisplayName": "G",
  1400. "m_SlotType": 1,
  1401. "m_Hidden": false,
  1402. "m_ShaderOutputName": "G",
  1403. "m_StageCapability": 2,
  1404. "m_Value": 0.0,
  1405. "m_DefaultValue": 0.0,
  1406. "m_Labels": []
  1407. }
  1408. {
  1409. "m_SGVersion": 0,
  1410. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1411. "m_ObjectId": "84acc85fb1ea48ecb5a33e7d35fe3bb2",
  1412. "m_Id": 4,
  1413. "m_DisplayName": "R",
  1414. "m_SlotType": 1,
  1415. "m_Hidden": false,
  1416. "m_ShaderOutputName": "R",
  1417. "m_StageCapability": 2,
  1418. "m_Value": 0.0,
  1419. "m_DefaultValue": 0.0,
  1420. "m_Labels": []
  1421. }
  1422. {
  1423. "m_SGVersion": 0,
  1424. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1425. "m_ObjectId": "8726bac1e5ca48448280ddcabd325e08",
  1426. "m_Id": 0,
  1427. "m_DisplayName": "Out",
  1428. "m_SlotType": 1,
  1429. "m_Hidden": false,
  1430. "m_ShaderOutputName": "Out",
  1431. "m_StageCapability": 3,
  1432. "m_BareResource": false
  1433. }
  1434. {
  1435. "m_SGVersion": 0,
  1436. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1437. "m_ObjectId": "88ce0ab31cf94f8c8fc477296174256e",
  1438. "m_Id": 0,
  1439. "m_DisplayName": "RGBA",
  1440. "m_SlotType": 1,
  1441. "m_Hidden": false,
  1442. "m_ShaderOutputName": "RGBA",
  1443. "m_StageCapability": 2,
  1444. "m_Value": {
  1445. "x": 0.0,
  1446. "y": 0.0,
  1447. "z": 0.0,
  1448. "w": 0.0
  1449. },
  1450. "m_DefaultValue": {
  1451. "x": 0.0,
  1452. "y": 0.0,
  1453. "z": 0.0,
  1454. "w": 0.0
  1455. },
  1456. "m_Labels": []
  1457. }
  1458. {
  1459. "m_SGVersion": 0,
  1460. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1461. "m_ObjectId": "8ff9e6906a9b4a38b6cd2a636264e63c",
  1462. "m_Id": 7,
  1463. "m_DisplayName": "A",
  1464. "m_SlotType": 1,
  1465. "m_Hidden": false,
  1466. "m_ShaderOutputName": "A",
  1467. "m_StageCapability": 2,
  1468. "m_Value": 0.0,
  1469. "m_DefaultValue": 0.0,
  1470. "m_Labels": []
  1471. }
  1472. {
  1473. "m_SGVersion": 0,
  1474. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1475. "m_ObjectId": "94d41098fd4d47dabf9339e7a7a556b3",
  1476. "m_Id": 4,
  1477. "m_DisplayName": "R",
  1478. "m_SlotType": 1,
  1479. "m_Hidden": false,
  1480. "m_ShaderOutputName": "R",
  1481. "m_StageCapability": 2,
  1482. "m_Value": 0.0,
  1483. "m_DefaultValue": 0.0,
  1484. "m_Labels": []
  1485. }
  1486. {
  1487. "m_SGVersion": 0,
  1488. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1489. "m_ObjectId": "9561b2a7439d4afc9530d5f12756567f",
  1490. "m_Id": 2,
  1491. "m_DisplayName": "Offset",
  1492. "m_SlotType": 1,
  1493. "m_Hidden": false,
  1494. "m_ShaderOutputName": "Offset",
  1495. "m_StageCapability": 3,
  1496. "m_Value": {
  1497. "x": 0.0,
  1498. "y": 0.0
  1499. },
  1500. "m_DefaultValue": {
  1501. "x": 0.0,
  1502. "y": 0.0
  1503. },
  1504. "m_Labels": []
  1505. }
  1506. {
  1507. "m_SGVersion": 0,
  1508. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1509. "m_ObjectId": "97ed336f191c416eb773fb941d515cde",
  1510. "m_Id": 2,
  1511. "m_DisplayName": "Offset",
  1512. "m_SlotType": 1,
  1513. "m_Hidden": false,
  1514. "m_ShaderOutputName": "Offset",
  1515. "m_StageCapability": 3,
  1516. "m_Value": {
  1517. "x": 0.0,
  1518. "y": 0.0
  1519. },
  1520. "m_DefaultValue": {
  1521. "x": 0.0,
  1522. "y": 0.0
  1523. },
  1524. "m_Labels": []
  1525. }
  1526. {
  1527. "m_SGVersion": 0,
  1528. "m_Type": "UnityEditor.Rendering.BuiltIn.ShaderGraph.BuiltInUnlitSubTarget",
  1529. "m_ObjectId": "98a4ecc6280543c68eac05ab3601ec55"
  1530. }
  1531. {
  1532. "m_SGVersion": 0,
  1533. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1534. "m_ObjectId": "9cebe1d521804c1494586e2cb00895bf",
  1535. "m_Id": 3,
  1536. "m_DisplayName": "Texture Only",
  1537. "m_SlotType": 1,
  1538. "m_Hidden": false,
  1539. "m_ShaderOutputName": "TextureOnly",
  1540. "m_StageCapability": 3,
  1541. "m_BareResource": false
  1542. }
  1543. {
  1544. "m_SGVersion": 0,
  1545. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  1546. "m_ObjectId": "9e3baad26859499abe7a3988d72a03a7",
  1547. "m_Title": "",
  1548. "m_Content": "Here we've used the Split Texture Transform node to remove the built-in tiling and offset values and sample the texture without them.",
  1549. "m_TextSize": 0,
  1550. "m_Theme": 0,
  1551. "m_Position": {
  1552. "serializedVersion": "2",
  1553. "x": -1654.0001220703125,
  1554. "y": 550.0000610351563,
  1555. "width": 200.0,
  1556. "height": 100.0
  1557. },
  1558. "m_Group": {
  1559. "m_Id": "e0a052824b0f4d7facf52c835f240295"
  1560. }
  1561. }
  1562. {
  1563. "m_SGVersion": 0,
  1564. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1565. "m_ObjectId": "a0f0576846c54b8296456a0fde632a8a",
  1566. "m_Id": 1,
  1567. "m_DisplayName": "Tiling",
  1568. "m_SlotType": 1,
  1569. "m_Hidden": false,
  1570. "m_ShaderOutputName": "Tiling",
  1571. "m_StageCapability": 3,
  1572. "m_Value": {
  1573. "x": 0.0,
  1574. "y": 0.0
  1575. },
  1576. "m_DefaultValue": {
  1577. "x": 0.0,
  1578. "y": 0.0
  1579. },
  1580. "m_Labels": []
  1581. }
  1582. {
  1583. "m_SGVersion": 0,
  1584. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1585. "m_ObjectId": "a8b76c03eef84cd79260cad828a7a68c",
  1586. "m_Id": 4,
  1587. "m_DisplayName": "R",
  1588. "m_SlotType": 1,
  1589. "m_Hidden": false,
  1590. "m_ShaderOutputName": "R",
  1591. "m_StageCapability": 2,
  1592. "m_Value": 0.0,
  1593. "m_DefaultValue": 0.0,
  1594. "m_Labels": []
  1595. }
  1596. {
  1597. "m_SGVersion": 0,
  1598. "m_Type": "UnityEditor.ShaderGraph.Vector4MaterialSlot",
  1599. "m_ObjectId": "a8c1146704e14347848a302533eca0c2",
  1600. "m_Id": 0,
  1601. "m_DisplayName": "RGBA",
  1602. "m_SlotType": 1,
  1603. "m_Hidden": false,
  1604. "m_ShaderOutputName": "RGBA",
  1605. "m_StageCapability": 2,
  1606. "m_Value": {
  1607. "x": 0.0,
  1608. "y": 0.0,
  1609. "z": 0.0,
  1610. "w": 0.0
  1611. },
  1612. "m_DefaultValue": {
  1613. "x": 0.0,
  1614. "y": 0.0,
  1615. "z": 0.0,
  1616. "w": 0.0
  1617. },
  1618. "m_Labels": []
  1619. }
  1620. {
  1621. "m_SGVersion": 0,
  1622. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  1623. "m_ObjectId": "a9035ad9328b4640a7b63bcea96f8a0a",
  1624. "m_Id": 2,
  1625. "m_DisplayName": "UV",
  1626. "m_SlotType": 0,
  1627. "m_Hidden": false,
  1628. "m_ShaderOutputName": "UV",
  1629. "m_StageCapability": 3,
  1630. "m_Value": {
  1631. "x": 0.0,
  1632. "y": 0.0
  1633. },
  1634. "m_DefaultValue": {
  1635. "x": 0.0,
  1636. "y": 0.0
  1637. },
  1638. "m_Labels": [],
  1639. "m_Channel": 0
  1640. }
  1641. {
  1642. "m_SGVersion": 0,
  1643. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  1644. "m_ObjectId": "ac7b83eced9b4048aa968b20fb9141d3",
  1645. "m_Id": 0,
  1646. "m_DisplayName": "UV",
  1647. "m_SlotType": 0,
  1648. "m_Hidden": false,
  1649. "m_ShaderOutputName": "UV",
  1650. "m_StageCapability": 3,
  1651. "m_Value": {
  1652. "x": 0.0,
  1653. "y": 0.0
  1654. },
  1655. "m_DefaultValue": {
  1656. "x": 0.0,
  1657. "y": 0.0
  1658. },
  1659. "m_Labels": [],
  1660. "m_Channel": 0
  1661. }
  1662. {
  1663. "m_SGVersion": 0,
  1664. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1665. "m_ObjectId": "b2e153d9475748799227577c8c26aa31",
  1666. "m_Id": 6,
  1667. "m_DisplayName": "B",
  1668. "m_SlotType": 1,
  1669. "m_Hidden": false,
  1670. "m_ShaderOutputName": "B",
  1671. "m_StageCapability": 2,
  1672. "m_Value": 0.0,
  1673. "m_DefaultValue": 0.0,
  1674. "m_Labels": []
  1675. }
  1676. {
  1677. "m_SGVersion": 0,
  1678. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  1679. "m_ObjectId": "b5396065fefa4893822721ed915346ba",
  1680. "m_Id": 0,
  1681. "m_DisplayName": "In",
  1682. "m_SlotType": 0,
  1683. "m_Hidden": false,
  1684. "m_ShaderOutputName": "In",
  1685. "m_StageCapability": 3,
  1686. "m_BareResource": false,
  1687. "m_Texture": {
  1688. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  1689. "m_Guid": ""
  1690. },
  1691. "m_DefaultType": 0
  1692. }
  1693. {
  1694. "m_SGVersion": 0,
  1695. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.HDUnlitSubTarget",
  1696. "m_ObjectId": "b7aa968dec8a4f45978aec2c9b830acd"
  1697. }
  1698. {
  1699. "m_SGVersion": 0,
  1700. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  1701. "m_ObjectId": "b950cba0fa854e04b79b01452aff4223",
  1702. "m_Id": 7,
  1703. "m_DisplayName": "A",
  1704. "m_SlotType": 1,
  1705. "m_Hidden": false,
  1706. "m_ShaderOutputName": "A",
  1707. "m_StageCapability": 2,
  1708. "m_Value": 0.0,
  1709. "m_DefaultValue": 0.0,
  1710. "m_Labels": []
  1711. }
  1712. {
  1713. "m_SGVersion": 0,
  1714. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  1715. "m_ObjectId": "ba90a0bb8ebf4322bd9830f9505afc89",
  1716. "m_Group": {
  1717. "m_Id": "e0a052824b0f4d7facf52c835f240295"
  1718. },
  1719. "m_Name": "Sample Texture 2D",
  1720. "m_DrawState": {
  1721. "m_Expanded": false,
  1722. "m_Position": {
  1723. "serializedVersion": "2",
  1724. "x": -1318.0,
  1725. "y": 394.4999694824219,
  1726. "width": 207.9998779296875,
  1727. "height": 338.0000915527344
  1728. }
  1729. },
  1730. "m_Slots": [
  1731. {
  1732. "m_Id": "a8c1146704e14347848a302533eca0c2"
  1733. },
  1734. {
  1735. "m_Id": "721db6fef1c94fdc81a88301e87d3814"
  1736. },
  1737. {
  1738. "m_Id": "8431171993dc4933b6913745d8868059"
  1739. },
  1740. {
  1741. "m_Id": "4cdae097d44f4f7ea8201eb9d2018a32"
  1742. },
  1743. {
  1744. "m_Id": "4166b9a1072d440192549ad3056cfb59"
  1745. },
  1746. {
  1747. "m_Id": "58bc06075f32483099fe5b05f7d9f914"
  1748. },
  1749. {
  1750. "m_Id": "81f1d30ee98448d38f70bcd22c7f3c3f"
  1751. },
  1752. {
  1753. "m_Id": "2882bbafa27b40449e871d5ea5a1a46d"
  1754. }
  1755. ],
  1756. "synonyms": [
  1757. "tex2d"
  1758. ],
  1759. "m_Precision": 0,
  1760. "m_PreviewExpanded": true,
  1761. "m_DismissedVersion": 0,
  1762. "m_PreviewMode": 0,
  1763. "m_CustomColors": {
  1764. "m_SerializableColors": []
  1765. },
  1766. "m_TextureType": 0,
  1767. "m_NormalMapSpace": 0,
  1768. "m_EnableGlobalMipBias": true,
  1769. "m_MipSamplingMode": 0
  1770. }
  1771. {
  1772. "m_SGVersion": 0,
  1773. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1774. "m_ObjectId": "bb535aebd8664586862397278271adc2",
  1775. "m_Id": 0,
  1776. "m_DisplayName": "Out",
  1777. "m_SlotType": 1,
  1778. "m_Hidden": false,
  1779. "m_ShaderOutputName": "Out",
  1780. "m_StageCapability": 3,
  1781. "m_BareResource": false
  1782. }
  1783. {
  1784. "m_SGVersion": 0,
  1785. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1786. "m_ObjectId": "c0b3ce2799dc4d7cafd0cd9c2dbd41a0",
  1787. "m_Group": {
  1788. "m_Id": ""
  1789. },
  1790. "m_Name": "SurfaceDescription.Alpha",
  1791. "m_DrawState": {
  1792. "m_Expanded": true,
  1793. "m_Position": {
  1794. "serializedVersion": "2",
  1795. "x": 0.0,
  1796. "y": 0.0,
  1797. "width": 0.0,
  1798. "height": 0.0
  1799. }
  1800. },
  1801. "m_Slots": [
  1802. {
  1803. "m_Id": "32ab7895d4d94041a59a75dfc6942fc7"
  1804. }
  1805. ],
  1806. "synonyms": [],
  1807. "m_Precision": 0,
  1808. "m_PreviewExpanded": true,
  1809. "m_DismissedVersion": 0,
  1810. "m_PreviewMode": 0,
  1811. "m_CustomColors": {
  1812. "m_SerializableColors": []
  1813. },
  1814. "m_SerializedDescriptor": "SurfaceDescription.Alpha"
  1815. }
  1816. {
  1817. "m_SGVersion": 0,
  1818. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1819. "m_ObjectId": "c0f321b79785485d8f96068a8c31b53b",
  1820. "m_Id": 3,
  1821. "m_DisplayName": "Texture Only",
  1822. "m_SlotType": 1,
  1823. "m_Hidden": false,
  1824. "m_ShaderOutputName": "TextureOnly",
  1825. "m_StageCapability": 3,
  1826. "m_BareResource": false
  1827. }
  1828. {
  1829. "m_SGVersion": 0,
  1830. "m_Type": "UnityEditor.ShaderGraph.SampleTexture2DNode",
  1831. "m_ObjectId": "c1642979d19046a9a095f842a8bde1b5",
  1832. "m_Group": {
  1833. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  1834. },
  1835. "m_Name": "Sample Texture 2D",
  1836. "m_DrawState": {
  1837. "m_Expanded": false,
  1838. "m_Position": {
  1839. "serializedVersion": "2",
  1840. "x": -375.0,
  1841. "y": 1110.5001220703125,
  1842. "width": 208.0,
  1843. "height": 362.0
  1844. }
  1845. },
  1846. "m_Slots": [
  1847. {
  1848. "m_Id": "59884ce9b8ee4449b6fd4c9edc3c3abd"
  1849. },
  1850. {
  1851. "m_Id": "94d41098fd4d47dabf9339e7a7a556b3"
  1852. },
  1853. {
  1854. "m_Id": "6a59138b182643b9a5be9551224ce4ce"
  1855. },
  1856. {
  1857. "m_Id": "d7b69ad3ccf744c8b5d5ea1a4488b34a"
  1858. },
  1859. {
  1860. "m_Id": "8ff9e6906a9b4a38b6cd2a636264e63c"
  1861. },
  1862. {
  1863. "m_Id": "f29d9e6644b24ed7af97aeae184a49d6"
  1864. },
  1865. {
  1866. "m_Id": "a9035ad9328b4640a7b63bcea96f8a0a"
  1867. },
  1868. {
  1869. "m_Id": "d15c553aa8b540b191030cd5bf127a84"
  1870. }
  1871. ],
  1872. "synonyms": [
  1873. "tex2d"
  1874. ],
  1875. "m_Precision": 0,
  1876. "m_PreviewExpanded": true,
  1877. "m_DismissedVersion": 0,
  1878. "m_PreviewMode": 0,
  1879. "m_CustomColors": {
  1880. "m_SerializableColors": []
  1881. },
  1882. "m_TextureType": 1,
  1883. "m_NormalMapSpace": 0,
  1884. "m_EnableGlobalMipBias": true,
  1885. "m_MipSamplingMode": 0
  1886. }
  1887. {
  1888. "m_SGVersion": 0,
  1889. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.BuiltinData",
  1890. "m_ObjectId": "c4b432566b11497fbf54aeb99530eda1",
  1891. "m_Distortion": false,
  1892. "m_DistortionMode": 0,
  1893. "m_DistortionDepthTest": true,
  1894. "m_AddPrecomputedVelocity": false,
  1895. "m_TransparentWritesMotionVec": false,
  1896. "m_DepthOffset": false,
  1897. "m_ConservativeDepthOffset": false,
  1898. "m_TransparencyFog": true,
  1899. "m_AlphaTestShadow": false,
  1900. "m_BackThenFrontRendering": false,
  1901. "m_TransparentDepthPrepass": false,
  1902. "m_TransparentDepthPostpass": false,
  1903. "m_TransparentPerPixelSorting": false,
  1904. "m_SupportLodCrossFade": false
  1905. }
  1906. {
  1907. "m_SGVersion": 0,
  1908. "m_Type": "UnityEditor.ShaderGraph.Texture2DAssetNode",
  1909. "m_ObjectId": "c590ca5eae2448ae87cb5c924054737e",
  1910. "m_Group": {
  1911. "m_Id": "e0a052824b0f4d7facf52c835f240295"
  1912. },
  1913. "m_Name": "Texture 2D Asset",
  1914. "m_DrawState": {
  1915. "m_Expanded": true,
  1916. "m_Position": {
  1917. "serializedVersion": "2",
  1918. "x": -1771.5,
  1919. "y": 394.4999694824219,
  1920. "width": 143.4998779296875,
  1921. "height": 106.00009155273438
  1922. }
  1923. },
  1924. "m_Slots": [
  1925. {
  1926. "m_Id": "d98fd4f9460f47f28e9f15d41dafb652"
  1927. }
  1928. ],
  1929. "synonyms": [],
  1930. "m_Precision": 0,
  1931. "m_PreviewExpanded": true,
  1932. "m_DismissedVersion": 0,
  1933. "m_PreviewMode": 0,
  1934. "m_CustomColors": {
  1935. "m_SerializableColors": []
  1936. },
  1937. "m_Texture": {
  1938. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"a7ff24a0f3bd4dd4aaf9265ba8da09ba\",\"type\":3}}",
  1939. "m_Guid": ""
  1940. }
  1941. }
  1942. {
  1943. "m_SGVersion": 0,
  1944. "m_Type": "UnityEditor.ShaderGraph.BlockNode",
  1945. "m_ObjectId": "c904cb2ffb6a46658772accca0cd227a",
  1946. "m_Group": {
  1947. "m_Id": ""
  1948. },
  1949. "m_Name": "VertexDescription.Normal",
  1950. "m_DrawState": {
  1951. "m_Expanded": true,
  1952. "m_Position": {
  1953. "serializedVersion": "2",
  1954. "x": 0.0,
  1955. "y": 0.0,
  1956. "width": 0.0,
  1957. "height": 0.0
  1958. }
  1959. },
  1960. "m_Slots": [
  1961. {
  1962. "m_Id": "ebd6411c877d4c16b1279a0cb3e9618c"
  1963. }
  1964. ],
  1965. "synonyms": [],
  1966. "m_Precision": 0,
  1967. "m_PreviewExpanded": true,
  1968. "m_DismissedVersion": 0,
  1969. "m_PreviewMode": 0,
  1970. "m_CustomColors": {
  1971. "m_SerializableColors": []
  1972. },
  1973. "m_SerializedDescriptor": "VertexDescription.Normal"
  1974. }
  1975. {
  1976. "m_SGVersion": 0,
  1977. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  1978. "m_ObjectId": "cbb30d2039a04017a13fc640fefa4fb8",
  1979. "m_Id": 3,
  1980. "m_DisplayName": "Texture Only",
  1981. "m_SlotType": 1,
  1982. "m_Hidden": false,
  1983. "m_ShaderOutputName": "TextureOnly",
  1984. "m_StageCapability": 3,
  1985. "m_BareResource": false
  1986. }
  1987. {
  1988. "m_SGVersion": 0,
  1989. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  1990. "m_ObjectId": "cca57504a68a4fd18c11421112cc5195",
  1991. "m_Id": 1,
  1992. "m_DisplayName": "Tiling",
  1993. "m_SlotType": 1,
  1994. "m_Hidden": false,
  1995. "m_ShaderOutputName": "Tiling",
  1996. "m_StageCapability": 3,
  1997. "m_Value": {
  1998. "x": 0.0,
  1999. "y": 0.0
  2000. },
  2001. "m_DefaultValue": {
  2002. "x": 0.0,
  2003. "y": 0.0
  2004. },
  2005. "m_Labels": []
  2006. }
  2007. {
  2008. "m_SGVersion": 0,
  2009. "m_Type": "UnityEditor.ShaderGraph.StickyNoteData",
  2010. "m_ObjectId": "cfaf0278f4f54d55acecf488f916631d",
  2011. "m_Title": "Split Texture Transform Node",
  2012. "m_Content": "The Split Texture Transform node makes it possible to seperate a texture asset from the built-in transform data that it comes with.\n\nIn Unity, a texture asset has tiling and offset values associated with it automatically. Normally, when the texture is sampled in the shader, these values get applied automatically.\n\nIf you would prefer that these values not get applied, or you want to apply them in a different way, you can use this node to access the texture asset without the values and/or just access the values without the texture asset. This could allow you to apply one texture's tiling and offset values to a whole set of textures - for example.",
  2013. "m_TextSize": 0,
  2014. "m_Theme": 0,
  2015. "m_Position": {
  2016. "serializedVersion": "2",
  2017. "x": -905.0000610351563,
  2018. "y": 44.500003814697269,
  2019. "width": 300.0,
  2020. "height": 256.0000305175781
  2021. },
  2022. "m_Group": {
  2023. "m_Id": ""
  2024. }
  2025. }
  2026. {
  2027. "m_SGVersion": 0,
  2028. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  2029. "m_ObjectId": "d15c553aa8b540b191030cd5bf127a84",
  2030. "m_Id": 3,
  2031. "m_DisplayName": "Sampler",
  2032. "m_SlotType": 0,
  2033. "m_Hidden": false,
  2034. "m_ShaderOutputName": "Sampler",
  2035. "m_StageCapability": 3,
  2036. "m_BareResource": false
  2037. }
  2038. {
  2039. "m_SGVersion": 0,
  2040. "m_Type": "UnityEditor.ShaderGraph.Texture2DAssetNode",
  2041. "m_ObjectId": "d2ca2e99812b4cb5b739a4d6a51b727f",
  2042. "m_Group": {
  2043. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  2044. },
  2045. "m_Name": "Texture 2D Asset",
  2046. "m_DrawState": {
  2047. "m_Expanded": true,
  2048. "m_Position": {
  2049. "serializedVersion": "2",
  2050. "x": -1015.0000610351563,
  2051. "y": 748.5000610351563,
  2052. "width": 143.5,
  2053. "height": 106.00006103515625
  2054. }
  2055. },
  2056. "m_Slots": [
  2057. {
  2058. "m_Id": "bb535aebd8664586862397278271adc2"
  2059. }
  2060. ],
  2061. "synonyms": [],
  2062. "m_Precision": 0,
  2063. "m_PreviewExpanded": true,
  2064. "m_DismissedVersion": 0,
  2065. "m_PreviewMode": 0,
  2066. "m_CustomColors": {
  2067. "m_SerializableColors": []
  2068. },
  2069. "m_Texture": {
  2070. "m_SerializedTexture": "{\"texture\":{\"fileID\":2800000,\"guid\":\"d7aa8e05f3b6118478e7caf71b9232c2\",\"type\":3}}",
  2071. "m_Guid": ""
  2072. }
  2073. }
  2074. {
  2075. "m_SGVersion": 0,
  2076. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  2077. "m_ObjectId": "d5f25734362f4bc6b70d3dbde667185d",
  2078. "m_Id": 2,
  2079. "m_DisplayName": "Offset",
  2080. "m_SlotType": 1,
  2081. "m_Hidden": false,
  2082. "m_ShaderOutputName": "Offset",
  2083. "m_StageCapability": 3,
  2084. "m_Value": {
  2085. "x": 0.0,
  2086. "y": 0.0
  2087. },
  2088. "m_DefaultValue": {
  2089. "x": 0.0,
  2090. "y": 0.0
  2091. },
  2092. "m_Labels": []
  2093. }
  2094. {
  2095. "m_SGVersion": 0,
  2096. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  2097. "m_ObjectId": "d669ed982bf346988f202fb5b6dbf6e8",
  2098. "m_Id": 1,
  2099. "m_DisplayName": "Texture",
  2100. "m_SlotType": 0,
  2101. "m_Hidden": false,
  2102. "m_ShaderOutputName": "Texture",
  2103. "m_StageCapability": 3,
  2104. "m_BareResource": false,
  2105. "m_Texture": {
  2106. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  2107. "m_Guid": ""
  2108. },
  2109. "m_DefaultType": 3
  2110. }
  2111. {
  2112. "m_SGVersion": 0,
  2113. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2114. "m_ObjectId": "d7b69ad3ccf744c8b5d5ea1a4488b34a",
  2115. "m_Id": 6,
  2116. "m_DisplayName": "B",
  2117. "m_SlotType": 1,
  2118. "m_Hidden": false,
  2119. "m_ShaderOutputName": "B",
  2120. "m_StageCapability": 2,
  2121. "m_Value": 0.0,
  2122. "m_DefaultValue": 0.0,
  2123. "m_Labels": []
  2124. }
  2125. {
  2126. "m_SGVersion": 0,
  2127. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2128. "m_ObjectId": "d93c88789b8a427b93c345cb85fe7b03",
  2129. "m_Id": 6,
  2130. "m_DisplayName": "B",
  2131. "m_SlotType": 1,
  2132. "m_Hidden": false,
  2133. "m_ShaderOutputName": "B",
  2134. "m_StageCapability": 2,
  2135. "m_Value": 0.0,
  2136. "m_DefaultValue": 0.0,
  2137. "m_Labels": []
  2138. }
  2139. {
  2140. "m_SGVersion": 0,
  2141. "m_Type": "UnityEditor.ShaderGraph.Texture2DMaterialSlot",
  2142. "m_ObjectId": "d98fd4f9460f47f28e9f15d41dafb652",
  2143. "m_Id": 0,
  2144. "m_DisplayName": "Out",
  2145. "m_SlotType": 1,
  2146. "m_Hidden": false,
  2147. "m_ShaderOutputName": "Out",
  2148. "m_StageCapability": 3,
  2149. "m_BareResource": false
  2150. }
  2151. {
  2152. "m_SGVersion": 0,
  2153. "m_Type": "UnityEditor.ShaderGraph.GroupData",
  2154. "m_ObjectId": "e0a052824b0f4d7facf52c835f240295",
  2155. "m_Title": "The Basics",
  2156. "m_Position": {
  2157. "x": -1796.5,
  2158. "y": 335.99993896484377
  2159. }
  2160. }
  2161. {
  2162. "m_SGVersion": 0,
  2163. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  2164. "m_ObjectId": "e28b9f4621c441ad997a6a6db59b0f24",
  2165. "m_Id": 0,
  2166. "m_DisplayName": "In",
  2167. "m_SlotType": 0,
  2168. "m_Hidden": false,
  2169. "m_ShaderOutputName": "In",
  2170. "m_StageCapability": 3,
  2171. "m_BareResource": false,
  2172. "m_Texture": {
  2173. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  2174. "m_Guid": ""
  2175. },
  2176. "m_DefaultType": 0
  2177. }
  2178. {
  2179. "m_SGVersion": 2,
  2180. "m_Type": "UnityEditor.Rendering.Universal.ShaderGraph.UniversalUnlitSubTarget",
  2181. "m_ObjectId": "e39c3db98e2d43a6bde4681d0c7a887e"
  2182. }
  2183. {
  2184. "m_SGVersion": 0,
  2185. "m_Type": "UnityEditor.ShaderGraph.SplitTextureTransformNode",
  2186. "m_ObjectId": "e3ef46ee2be54980adb544ed8b0d8020",
  2187. "m_Group": {
  2188. "m_Id": "e0a052824b0f4d7facf52c835f240295"
  2189. },
  2190. "m_Name": "Split Texture Transform",
  2191. "m_DrawState": {
  2192. "m_Expanded": false,
  2193. "m_Position": {
  2194. "serializedVersion": "2",
  2195. "x": -1570.0,
  2196. "y": 394.4999694824219,
  2197. "width": 192.0,
  2198. "height": 77.00003051757813
  2199. }
  2200. },
  2201. "m_Slots": [
  2202. {
  2203. "m_Id": "f9c2c420ad7948979522ae0ccfcc7aba"
  2204. },
  2205. {
  2206. "m_Id": "cca57504a68a4fd18c11421112cc5195"
  2207. },
  2208. {
  2209. "m_Id": "d5f25734362f4bc6b70d3dbde667185d"
  2210. },
  2211. {
  2212. "m_Id": "9cebe1d521804c1494586e2cb00895bf"
  2213. }
  2214. ],
  2215. "synonyms": [],
  2216. "m_Precision": 0,
  2217. "m_PreviewExpanded": true,
  2218. "m_DismissedVersion": 0,
  2219. "m_PreviewMode": 0,
  2220. "m_CustomColors": {
  2221. "m_SerializableColors": []
  2222. }
  2223. }
  2224. {
  2225. "m_SGVersion": 0,
  2226. "m_Type": "UnityEditor.ShaderGraph.SplitTextureTransformNode",
  2227. "m_ObjectId": "e8085508047448a8af6ad6b7512747ee",
  2228. "m_Group": {
  2229. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  2230. },
  2231. "m_Name": "Split Texture Transform",
  2232. "m_DrawState": {
  2233. "m_Expanded": false,
  2234. "m_Position": {
  2235. "serializedVersion": "2",
  2236. "x": -854.9999389648438,
  2237. "y": 748.5000610351563,
  2238. "width": 191.9998779296875,
  2239. "height": 77.0
  2240. }
  2241. },
  2242. "m_Slots": [
  2243. {
  2244. "m_Id": "b5396065fefa4893822721ed915346ba"
  2245. },
  2246. {
  2247. "m_Id": "0a87f2f9d06642b2940d221c79824b82"
  2248. },
  2249. {
  2250. "m_Id": "682b9b20ade540f9b9e11d21bae27956"
  2251. },
  2252. {
  2253. "m_Id": "2447b5683b844b8685f1d0504c7d5cfb"
  2254. }
  2255. ],
  2256. "synonyms": [],
  2257. "m_Precision": 0,
  2258. "m_PreviewExpanded": true,
  2259. "m_DismissedVersion": 0,
  2260. "m_PreviewMode": 0,
  2261. "m_CustomColors": {
  2262. "m_SerializableColors": []
  2263. }
  2264. }
  2265. {
  2266. "m_SGVersion": 0,
  2267. "m_Type": "UnityEditor.ShaderGraph.SplitTextureTransformNode",
  2268. "m_ObjectId": "e836c64fa0054374a2e3a930cb6abd87",
  2269. "m_Group": {
  2270. "m_Id": "3fea36ac26404ba6ad680a007f1e2deb"
  2271. },
  2272. "m_Name": "Split Texture Transform",
  2273. "m_DrawState": {
  2274. "m_Expanded": false,
  2275. "m_Position": {
  2276. "serializedVersion": "2",
  2277. "x": -867.4999389648438,
  2278. "y": 450.5000305175781,
  2279. "width": 178.49993896484376,
  2280. "height": 101.00003051757813
  2281. }
  2282. },
  2283. "m_Slots": [
  2284. {
  2285. "m_Id": "002d32c277ff4ed0b163b29e4acef3ca"
  2286. },
  2287. {
  2288. "m_Id": "4c6a53b037d141c8aab78ff0dbbef3c6"
  2289. },
  2290. {
  2291. "m_Id": "4c464f2e78a949e4a712f41be9d4885a"
  2292. },
  2293. {
  2294. "m_Id": "c0f321b79785485d8f96068a8c31b53b"
  2295. }
  2296. ],
  2297. "synonyms": [],
  2298. "m_Precision": 0,
  2299. "m_PreviewExpanded": true,
  2300. "m_DismissedVersion": 0,
  2301. "m_PreviewMode": 0,
  2302. "m_CustomColors": {
  2303. "m_SerializableColors": []
  2304. }
  2305. }
  2306. {
  2307. "m_SGVersion": 0,
  2308. "m_Type": "UnityEditor.Rendering.HighDefinition.ShaderGraph.SystemData",
  2309. "m_ObjectId": "ea1e3f483e084b43b03c5b113fbbe61f",
  2310. "m_MaterialNeedsUpdateHash": 0,
  2311. "m_SurfaceType": 0,
  2312. "m_RenderingPass": 1,
  2313. "m_BlendMode": 0,
  2314. "m_ZTest": 4,
  2315. "m_ZWrite": false,
  2316. "m_TransparentCullMode": 2,
  2317. "m_OpaqueCullMode": 2,
  2318. "m_SortPriority": 0,
  2319. "m_AlphaTest": false,
  2320. "m_TransparentDepthPrepass": false,
  2321. "m_TransparentDepthPostpass": false,
  2322. "m_SupportLodCrossFade": false,
  2323. "m_DoubleSidedMode": 0,
  2324. "m_DOTSInstancing": false,
  2325. "m_CustomVelocity": false,
  2326. "m_Tessellation": false,
  2327. "m_TessellationMode": 0,
  2328. "m_TessellationFactorMinDistance": 20.0,
  2329. "m_TessellationFactorMaxDistance": 50.0,
  2330. "m_TessellationFactorTriangleSize": 100.0,
  2331. "m_TessellationShapeFactor": 0.75,
  2332. "m_TessellationBackFaceCullEpsilon": -0.25,
  2333. "m_TessellationMaxDisplacement": 0.009999999776482582,
  2334. "m_DebugSymbols": false,
  2335. "m_Version": 2,
  2336. "inspectorFoldoutMask": 0
  2337. }
  2338. {
  2339. "m_SGVersion": 0,
  2340. "m_Type": "UnityEditor.ShaderGraph.NormalMaterialSlot",
  2341. "m_ObjectId": "ebd6411c877d4c16b1279a0cb3e9618c",
  2342. "m_Id": 0,
  2343. "m_DisplayName": "Normal",
  2344. "m_SlotType": 0,
  2345. "m_Hidden": false,
  2346. "m_ShaderOutputName": "Normal",
  2347. "m_StageCapability": 1,
  2348. "m_Value": {
  2349. "x": 0.0,
  2350. "y": 0.0,
  2351. "z": 0.0
  2352. },
  2353. "m_DefaultValue": {
  2354. "x": 0.0,
  2355. "y": 0.0,
  2356. "z": 0.0
  2357. },
  2358. "m_Labels": [],
  2359. "m_Space": 0
  2360. }
  2361. {
  2362. "m_SGVersion": 0,
  2363. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  2364. "m_ObjectId": "f29d9e6644b24ed7af97aeae184a49d6",
  2365. "m_Id": 1,
  2366. "m_DisplayName": "Texture",
  2367. "m_SlotType": 0,
  2368. "m_Hidden": false,
  2369. "m_ShaderOutputName": "Texture",
  2370. "m_StageCapability": 3,
  2371. "m_BareResource": false,
  2372. "m_Texture": {
  2373. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  2374. "m_Guid": ""
  2375. },
  2376. "m_DefaultType": 3
  2377. }
  2378. {
  2379. "m_SGVersion": 0,
  2380. "m_Type": "UnityEditor.ShaderGraph.UVMaterialSlot",
  2381. "m_ObjectId": "f404780c022d4b71a5234786ef22c25f",
  2382. "m_Id": 2,
  2383. "m_DisplayName": "UV",
  2384. "m_SlotType": 0,
  2385. "m_Hidden": false,
  2386. "m_ShaderOutputName": "UV",
  2387. "m_StageCapability": 3,
  2388. "m_Value": {
  2389. "x": 0.0,
  2390. "y": 0.0
  2391. },
  2392. "m_DefaultValue": {
  2393. "x": 0.0,
  2394. "y": 0.0
  2395. },
  2396. "m_Labels": [],
  2397. "m_Channel": 0
  2398. }
  2399. {
  2400. "m_SGVersion": 0,
  2401. "m_Type": "UnityEditor.ShaderGraph.SplitTextureTransformNode",
  2402. "m_ObjectId": "f5af9a9b88bf4eb397d20ceb023954f1",
  2403. "m_Group": {
  2404. "m_Id": ""
  2405. },
  2406. "m_Name": "Split Texture Transform",
  2407. "m_DrawState": {
  2408. "m_Expanded": true,
  2409. "m_Position": {
  2410. "serializedVersion": "2",
  2411. "x": -1116.500244140625,
  2412. "y": 43.00001907348633,
  2413. "width": 192.00018310546876,
  2414. "height": 125.0
  2415. }
  2416. },
  2417. "m_Slots": [
  2418. {
  2419. "m_Id": "e28b9f4621c441ad997a6a6db59b0f24"
  2420. },
  2421. {
  2422. "m_Id": "77117161560e49d6bfba4c47ca409d47"
  2423. },
  2424. {
  2425. "m_Id": "9561b2a7439d4afc9530d5f12756567f"
  2426. },
  2427. {
  2428. "m_Id": "cbb30d2039a04017a13fc640fefa4fb8"
  2429. }
  2430. ],
  2431. "synonyms": [],
  2432. "m_Precision": 0,
  2433. "m_PreviewExpanded": true,
  2434. "m_DismissedVersion": 0,
  2435. "m_PreviewMode": 0,
  2436. "m_CustomColors": {
  2437. "m_SerializableColors": []
  2438. }
  2439. }
  2440. {
  2441. "m_SGVersion": 0,
  2442. "m_Type": "UnityEditor.ShaderGraph.SamplerStateMaterialSlot",
  2443. "m_ObjectId": "f658097580af44cfb53d5ee25d2ec82f",
  2444. "m_Id": 3,
  2445. "m_DisplayName": "Sampler",
  2446. "m_SlotType": 0,
  2447. "m_Hidden": false,
  2448. "m_ShaderOutputName": "Sampler",
  2449. "m_StageCapability": 3,
  2450. "m_BareResource": false
  2451. }
  2452. {
  2453. "m_SGVersion": 0,
  2454. "m_Type": "UnityEditor.ShaderGraph.Vector1MaterialSlot",
  2455. "m_ObjectId": "f98c5edc4f44437dbde57970a9e60ad3",
  2456. "m_Id": 5,
  2457. "m_DisplayName": "G",
  2458. "m_SlotType": 1,
  2459. "m_Hidden": false,
  2460. "m_ShaderOutputName": "G",
  2461. "m_StageCapability": 2,
  2462. "m_Value": 0.0,
  2463. "m_DefaultValue": 0.0,
  2464. "m_Labels": []
  2465. }
  2466. {
  2467. "m_SGVersion": 0,
  2468. "m_Type": "UnityEditor.ShaderGraph.Texture2DInputMaterialSlot",
  2469. "m_ObjectId": "f9c2c420ad7948979522ae0ccfcc7aba",
  2470. "m_Id": 0,
  2471. "m_DisplayName": "In",
  2472. "m_SlotType": 0,
  2473. "m_Hidden": false,
  2474. "m_ShaderOutputName": "In",
  2475. "m_StageCapability": 3,
  2476. "m_BareResource": false,
  2477. "m_Texture": {
  2478. "m_SerializedTexture": "{\"texture\":{\"instanceID\":0}}",
  2479. "m_Guid": ""
  2480. },
  2481. "m_DefaultType": 0
  2482. }
  2483. {
  2484. "m_SGVersion": 0,
  2485. "m_Type": "UnityEditor.ShaderGraph.Vector2MaterialSlot",
  2486. "m_ObjectId": "f9d8870533c845b185591df858baec86",
  2487. "m_Id": 1,
  2488. "m_DisplayName": "Tiling",
  2489. "m_SlotType": 0,
  2490. "m_Hidden": false,
  2491. "m_ShaderOutputName": "Tiling",
  2492. "m_StageCapability": 3,
  2493. "m_Value": {
  2494. "x": 1.0,
  2495. "y": 1.0
  2496. },
  2497. "m_DefaultValue": {
  2498. "x": 0.0,
  2499. "y": 0.0
  2500. },
  2501. "m_Labels": []
  2502. }