3
0

LY_SC_UnitTest_RunAllTransformNodes.scriptcanvas 282 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 63308520664962
  9. },
  10. "Name": "Untitled-1",
  11. "Components": {
  12. "Component_[11203002865887277140]": {
  13. "$type": "EditorGraph",
  14. "Id": 11203002865887277140,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 318120340402050
  20. },
  21. "Name": "SC-Node(ScriptCanvas_TransformFunctions_GetTranslation)",
  22. "Components": {
  23. "Component_[1024304720225221356]": {
  24. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  25. "Id": 1024304720225221356,
  26. "Slots": [
  27. {
  28. "id": {
  29. "m_id": "{D0D51B33-C015-4B00-991D-AF08B0209499}"
  30. },
  31. "contracts": [
  32. {
  33. "$type": "SlotTypeContract"
  34. }
  35. ],
  36. "slotName": "Source",
  37. "Descriptor": {
  38. "ConnectionType": 1,
  39. "SlotType": 2
  40. },
  41. "DataType": 1
  42. },
  43. {
  44. "id": {
  45. "m_id": "{CB0AEB3F-A95E-4FB4-B0AB-2DF55FE94816}"
  46. },
  47. "contracts": [
  48. {
  49. "$type": "SlotTypeContract"
  50. }
  51. ],
  52. "slotName": "In",
  53. "Descriptor": {
  54. "ConnectionType": 1,
  55. "SlotType": 1
  56. }
  57. },
  58. {
  59. "id": {
  60. "m_id": "{0805BD1C-0C93-4968-85EC-83C26A7A28A3}"
  61. },
  62. "contracts": [
  63. {
  64. "$type": "SlotTypeContract"
  65. }
  66. ],
  67. "slotName": "Out",
  68. "Descriptor": {
  69. "ConnectionType": 2,
  70. "SlotType": 1
  71. }
  72. },
  73. {
  74. "id": {
  75. "m_id": "{9502C842-5DA5-4A45-855D-D762EBD9845A}"
  76. },
  77. "contracts": [
  78. {
  79. "$type": "SlotTypeContract"
  80. }
  81. ],
  82. "slotName": "Vector3",
  83. "DisplayDataType": {
  84. "m_type": 8
  85. },
  86. "Descriptor": {
  87. "ConnectionType": 2,
  88. "SlotType": 2
  89. },
  90. "DataType": 1
  91. }
  92. ],
  93. "Datums": [
  94. {
  95. "isOverloadedStorage": false,
  96. "scriptCanvasType": {
  97. "m_type": 7
  98. },
  99. "isNullPointer": false,
  100. "$type": "Transform",
  101. "value": {
  102. "Translation": [
  103. 0.0,
  104. 0.0,
  105. 0.0
  106. ],
  107. "Rotation": [
  108. 0.0,
  109. 0.0,
  110. 0.0,
  111. 1.0
  112. ],
  113. "Scale": 1.0
  114. },
  115. "label": "Source"
  116. }
  117. ],
  118. "methodType": 1,
  119. "methodName": "ScriptCanvas_TransformFunctions_GetTranslation",
  120. "inputSlots": [
  121. {
  122. "m_id": "{D0D51B33-C015-4B00-991D-AF08B0209499}"
  123. }
  124. ],
  125. "prettyClassName": "ScriptCanvas_TransformFunctions_GetTranslation"
  126. }
  127. }
  128. },
  129. {
  130. "Id": {
  131. "id": 313404466311042
  132. },
  133. "Name": "SC-Node(ScriptCanvas_TransformFunctions_FromRotationAndTranslation)",
  134. "Components": {
  135. "Component_[10288876850801442426]": {
  136. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  137. "Id": 10288876850801442426,
  138. "Slots": [
  139. {
  140. "id": {
  141. "m_id": "{1DFD467C-1505-4B21-8F2B-DC1D23FCCA7E}"
  142. },
  143. "contracts": [
  144. {
  145. "$type": "SlotTypeContract"
  146. }
  147. ],
  148. "slotName": "Rotation",
  149. "Descriptor": {
  150. "ConnectionType": 1,
  151. "SlotType": 2
  152. },
  153. "DataType": 1
  154. },
  155. {
  156. "id": {
  157. "m_id": "{F75DC967-E28C-4AE5-ADD4-F410CADEEEA9}"
  158. },
  159. "contracts": [
  160. {
  161. "$type": "SlotTypeContract"
  162. }
  163. ],
  164. "slotName": "Translation",
  165. "Descriptor": {
  166. "ConnectionType": 1,
  167. "SlotType": 2
  168. },
  169. "DataType": 1
  170. },
  171. {
  172. "id": {
  173. "m_id": "{1F7F31BB-2AB8-4ADF-B232-E8E96AC3ACA1}"
  174. },
  175. "contracts": [
  176. {
  177. "$type": "SlotTypeContract"
  178. }
  179. ],
  180. "slotName": "In",
  181. "Descriptor": {
  182. "ConnectionType": 1,
  183. "SlotType": 1
  184. }
  185. },
  186. {
  187. "id": {
  188. "m_id": "{E37B38E2-EEE5-410B-A5F3-30E29DCF0287}"
  189. },
  190. "contracts": [
  191. {
  192. "$type": "SlotTypeContract"
  193. }
  194. ],
  195. "slotName": "Out",
  196. "Descriptor": {
  197. "ConnectionType": 2,
  198. "SlotType": 1
  199. }
  200. },
  201. {
  202. "id": {
  203. "m_id": "{482D49CB-DF94-4415-9115-D61559621D58}"
  204. },
  205. "contracts": [
  206. {
  207. "$type": "SlotTypeContract"
  208. }
  209. ],
  210. "slotName": "Transform",
  211. "DisplayDataType": {
  212. "m_type": 7
  213. },
  214. "Descriptor": {
  215. "ConnectionType": 2,
  216. "SlotType": 2
  217. },
  218. "DataType": 1
  219. }
  220. ],
  221. "Datums": [
  222. {
  223. "isOverloadedStorage": false,
  224. "scriptCanvasType": {
  225. "m_type": 6
  226. },
  227. "isNullPointer": false,
  228. "$type": "Quaternion",
  229. "value": [
  230. 0.0,
  231. 0.0,
  232. 0.0,
  233. 1.0
  234. ],
  235. "label": "Rotation"
  236. },
  237. {
  238. "isOverloadedStorage": false,
  239. "scriptCanvasType": {
  240. "m_type": 8
  241. },
  242. "isNullPointer": false,
  243. "$type": "Vector3",
  244. "value": [
  245. 0.0,
  246. 0.0,
  247. 0.0
  248. ],
  249. "label": "Translation"
  250. }
  251. ],
  252. "methodType": 1,
  253. "methodName": "ScriptCanvas_TransformFunctions_FromRotationAndTranslation",
  254. "inputSlots": [
  255. {
  256. "m_id": "{1DFD467C-1505-4B21-8F2B-DC1D23FCCA7E}"
  257. },
  258. {
  259. "m_id": "{F75DC967-E28C-4AE5-ADD4-F410CADEEEA9}"
  260. }
  261. ],
  262. "prettyClassName": "ScriptCanvas_TransformFunctions_FromRotationAndTranslation"
  263. }
  264. }
  265. },
  266. {
  267. "Id": {
  268. "id": 318567017000834
  269. },
  270. "Name": "SC-Node(ScriptCanvas_TransformFunctions_GetUp)",
  271. "Components": {
  272. "Component_[13006039055001467215]": {
  273. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  274. "Id": 13006039055001467215,
  275. "Slots": [
  276. {
  277. "id": {
  278. "m_id": "{464A2C52-BB2A-43E1-A2B5-3BA1C462A19D}"
  279. },
  280. "contracts": [
  281. {
  282. "$type": "SlotTypeContract"
  283. }
  284. ],
  285. "slotName": "Source",
  286. "Descriptor": {
  287. "ConnectionType": 1,
  288. "SlotType": 2
  289. },
  290. "DataType": 1
  291. },
  292. {
  293. "id": {
  294. "m_id": "{AF4609F6-012D-4747-8CF3-DE07800F34E1}"
  295. },
  296. "contracts": [
  297. {
  298. "$type": "SlotTypeContract"
  299. }
  300. ],
  301. "slotName": "Scale",
  302. "Descriptor": {
  303. "ConnectionType": 1,
  304. "SlotType": 2
  305. },
  306. "DataType": 1
  307. },
  308. {
  309. "id": {
  310. "m_id": "{8A86DDF1-5703-40F0-84AF-4D0E4E433695}"
  311. },
  312. "contracts": [
  313. {
  314. "$type": "SlotTypeContract"
  315. }
  316. ],
  317. "slotName": "In",
  318. "Descriptor": {
  319. "ConnectionType": 1,
  320. "SlotType": 1
  321. }
  322. },
  323. {
  324. "id": {
  325. "m_id": "{4FE581A1-6C83-49A8-A013-1754DDCF4C40}"
  326. },
  327. "contracts": [
  328. {
  329. "$type": "SlotTypeContract"
  330. }
  331. ],
  332. "slotName": "Out",
  333. "Descriptor": {
  334. "ConnectionType": 2,
  335. "SlotType": 1
  336. }
  337. },
  338. {
  339. "id": {
  340. "m_id": "{0C4B55E6-4C66-4803-9B0A-A9DECA789E6F}"
  341. },
  342. "contracts": [
  343. {
  344. "$type": "SlotTypeContract"
  345. }
  346. ],
  347. "slotName": "Vector3",
  348. "DisplayDataType": {
  349. "m_type": 8
  350. },
  351. "Descriptor": {
  352. "ConnectionType": 2,
  353. "SlotType": 2
  354. },
  355. "DataType": 1
  356. }
  357. ],
  358. "Datums": [
  359. {
  360. "isOverloadedStorage": false,
  361. "scriptCanvasType": {
  362. "m_type": 7
  363. },
  364. "isNullPointer": false,
  365. "$type": "Transform",
  366. "value": {
  367. "Translation": [
  368. 0.0,
  369. 0.0,
  370. 0.0
  371. ],
  372. "Rotation": [
  373. 0.0,
  374. 0.0,
  375. 0.0,
  376. 1.0
  377. ],
  378. "Scale": 1.0
  379. },
  380. "label": "Source"
  381. },
  382. {
  383. "isOverloadedStorage": false,
  384. "scriptCanvasType": {
  385. "m_type": 3
  386. },
  387. "isNullPointer": false,
  388. "$type": "double",
  389. "value": 1.0,
  390. "label": "Scale"
  391. }
  392. ],
  393. "methodType": 1,
  394. "methodName": "ScriptCanvas_TransformFunctions_GetUp",
  395. "inputSlots": [
  396. {
  397. "m_id": "{464A2C52-BB2A-43E1-A2B5-3BA1C462A19D}"
  398. },
  399. {
  400. "m_id": "{AF4609F6-012D-4747-8CF3-DE07800F34E1}"
  401. }
  402. ],
  403. "prettyClassName": "ScriptCanvas_TransformFunctions_GetUp"
  404. }
  405. }
  406. },
  407. {
  408. "Id": {
  409. "id": 319829737385858
  410. },
  411. "Name": "SC-Node(ScriptCanvas_TransformFunctions_IsFinite)",
  412. "Components": {
  413. "Component_[13965347542401196513]": {
  414. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  415. "Id": 13965347542401196513,
  416. "Slots": [
  417. {
  418. "id": {
  419. "m_id": "{C4C20B18-A28B-45AC-82A1-ABDC0579DED2}"
  420. },
  421. "contracts": [
  422. {
  423. "$type": "SlotTypeContract"
  424. }
  425. ],
  426. "slotName": "Source",
  427. "Descriptor": {
  428. "ConnectionType": 1,
  429. "SlotType": 2
  430. },
  431. "DataType": 1
  432. },
  433. {
  434. "id": {
  435. "m_id": "{B5E65132-F0B1-4370-863C-19529FF35F17}"
  436. },
  437. "contracts": [
  438. {
  439. "$type": "SlotTypeContract"
  440. }
  441. ],
  442. "slotName": "In",
  443. "Descriptor": {
  444. "ConnectionType": 1,
  445. "SlotType": 1
  446. }
  447. },
  448. {
  449. "id": {
  450. "m_id": "{782C650B-8346-41F2-9782-88F2D3773D87}"
  451. },
  452. "contracts": [
  453. {
  454. "$type": "SlotTypeContract"
  455. }
  456. ],
  457. "slotName": "Out",
  458. "Descriptor": {
  459. "ConnectionType": 2,
  460. "SlotType": 1
  461. }
  462. },
  463. {
  464. "id": {
  465. "m_id": "{A59A78E6-DBA5-4702-8929-F213422722D3}"
  466. },
  467. "contracts": [
  468. {
  469. "$type": "SlotTypeContract"
  470. }
  471. ],
  472. "slotName": "Boolean",
  473. "DisplayDataType": {
  474. "m_type": 0
  475. },
  476. "Descriptor": {
  477. "ConnectionType": 2,
  478. "SlotType": 2
  479. },
  480. "DataType": 1
  481. }
  482. ],
  483. "Datums": [
  484. {
  485. "isOverloadedStorage": false,
  486. "scriptCanvasType": {
  487. "m_type": 7
  488. },
  489. "isNullPointer": false,
  490. "$type": "Transform",
  491. "value": {
  492. "Translation": [
  493. 0.0,
  494. 0.0,
  495. 0.0
  496. ],
  497. "Rotation": [
  498. 0.0,
  499. 0.0,
  500. 0.0,
  501. 1.0
  502. ],
  503. "Scale": 1.0
  504. },
  505. "label": "Source"
  506. }
  507. ],
  508. "methodType": 1,
  509. "methodName": "ScriptCanvas_TransformFunctions_IsFinite",
  510. "inputSlots": [
  511. {
  512. "m_id": "{C4C20B18-A28B-45AC-82A1-ABDC0579DED2}"
  513. }
  514. ],
  515. "prettyClassName": "ScriptCanvas_TransformFunctions_IsFinite"
  516. }
  517. }
  518. },
  519. {
  520. "Id": {
  521. "id": 316213374922626
  522. },
  523. "Name": "SC-Node(ScriptCanvas_TransformFunctions_FromTranslation)",
  524. "Components": {
  525. "Component_[14272275115566840844]": {
  526. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  527. "Id": 14272275115566840844,
  528. "Slots": [
  529. {
  530. "id": {
  531. "m_id": "{F344197A-FEDC-4255-84A9-FD8E2898E73C}"
  532. },
  533. "contracts": [
  534. {
  535. "$type": "SlotTypeContract"
  536. }
  537. ],
  538. "slotName": "Translation",
  539. "Descriptor": {
  540. "ConnectionType": 1,
  541. "SlotType": 2
  542. },
  543. "DataType": 1
  544. },
  545. {
  546. "id": {
  547. "m_id": "{A6AD4276-0165-4194-8492-A266A50C78C7}"
  548. },
  549. "contracts": [
  550. {
  551. "$type": "SlotTypeContract"
  552. }
  553. ],
  554. "slotName": "In",
  555. "Descriptor": {
  556. "ConnectionType": 1,
  557. "SlotType": 1
  558. }
  559. },
  560. {
  561. "id": {
  562. "m_id": "{7085B9DA-82F4-4F0B-9747-26B249DF45EA}"
  563. },
  564. "contracts": [
  565. {
  566. "$type": "SlotTypeContract"
  567. }
  568. ],
  569. "slotName": "Out",
  570. "Descriptor": {
  571. "ConnectionType": 2,
  572. "SlotType": 1
  573. }
  574. },
  575. {
  576. "id": {
  577. "m_id": "{B2B55D9E-92C9-4FBA-BB88-A6DD4CD3D4FD}"
  578. },
  579. "contracts": [
  580. {
  581. "$type": "SlotTypeContract"
  582. }
  583. ],
  584. "slotName": "Transform",
  585. "DisplayDataType": {
  586. "m_type": 7
  587. },
  588. "Descriptor": {
  589. "ConnectionType": 2,
  590. "SlotType": 2
  591. },
  592. "DataType": 1
  593. }
  594. ],
  595. "Datums": [
  596. {
  597. "isOverloadedStorage": false,
  598. "scriptCanvasType": {
  599. "m_type": 8
  600. },
  601. "isNullPointer": false,
  602. "$type": "Vector3",
  603. "value": [
  604. 0.0,
  605. 0.0,
  606. 0.0
  607. ],
  608. "label": "Translation"
  609. }
  610. ],
  611. "methodType": 1,
  612. "methodName": "ScriptCanvas_TransformFunctions_FromTranslation",
  613. "inputSlots": [
  614. {
  615. "m_id": "{F344197A-FEDC-4255-84A9-FD8E2898E73C}"
  616. }
  617. ],
  618. "prettyClassName": "ScriptCanvas_TransformFunctions_FromTranslation"
  619. }
  620. }
  621. },
  622. {
  623. "Id": {
  624. "id": 310329269727106
  625. },
  626. "Name": "SC-Node(Start)",
  627. "Components": {
  628. "Component_[14455538954519177041]": {
  629. "$type": "Start",
  630. "Id": 14455538954519177041,
  631. "Slots": [
  632. {
  633. "id": {
  634. "m_id": "{3E79CAD5-C5DE-4409-B804-8083536F4ACF}"
  635. },
  636. "contracts": [
  637. {
  638. "$type": "SlotTypeContract"
  639. }
  640. ],
  641. "slotName": "Out",
  642. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  643. "Descriptor": {
  644. "ConnectionType": 2,
  645. "SlotType": 1
  646. }
  647. }
  648. ]
  649. }
  650. }
  651. },
  652. {
  653. "Id": {
  654. "id": 320276413984642
  655. },
  656. "Name": "SC-Node(ScriptCanvas_TransformFunctions_IsOrthogonal)",
  657. "Components": {
  658. "Component_[16231706823073640460]": {
  659. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  660. "Id": 16231706823073640460,
  661. "Slots": [
  662. {
  663. "id": {
  664. "m_id": "{0B282EED-6F81-4F4E-BC4E-39D8C0A637CB}"
  665. },
  666. "contracts": [
  667. {
  668. "$type": "SlotTypeContract"
  669. }
  670. ],
  671. "slotName": "Source",
  672. "Descriptor": {
  673. "ConnectionType": 1,
  674. "SlotType": 2
  675. },
  676. "DataType": 1
  677. },
  678. {
  679. "id": {
  680. "m_id": "{5AE7164A-42A6-403B-BE3D-2525C2B535CF}"
  681. },
  682. "contracts": [
  683. {
  684. "$type": "SlotTypeContract"
  685. }
  686. ],
  687. "slotName": "Tolerance",
  688. "Descriptor": {
  689. "ConnectionType": 1,
  690. "SlotType": 2
  691. },
  692. "DataType": 1
  693. },
  694. {
  695. "id": {
  696. "m_id": "{7ECF89EB-7C24-46A4-9B2C-392BB0D6F5C2}"
  697. },
  698. "contracts": [
  699. {
  700. "$type": "SlotTypeContract"
  701. }
  702. ],
  703. "slotName": "In",
  704. "Descriptor": {
  705. "ConnectionType": 1,
  706. "SlotType": 1
  707. }
  708. },
  709. {
  710. "id": {
  711. "m_id": "{B6774D34-EB78-4709-BBD9-BED8C5681583}"
  712. },
  713. "contracts": [
  714. {
  715. "$type": "SlotTypeContract"
  716. }
  717. ],
  718. "slotName": "Out",
  719. "Descriptor": {
  720. "ConnectionType": 2,
  721. "SlotType": 1
  722. }
  723. },
  724. {
  725. "id": {
  726. "m_id": "{34EC104E-EE39-4424-806F-40853E133B37}"
  727. },
  728. "contracts": [
  729. {
  730. "$type": "SlotTypeContract"
  731. }
  732. ],
  733. "slotName": "Boolean",
  734. "DisplayDataType": {
  735. "m_type": 0
  736. },
  737. "Descriptor": {
  738. "ConnectionType": 2,
  739. "SlotType": 2
  740. },
  741. "DataType": 1
  742. }
  743. ],
  744. "Datums": [
  745. {
  746. "isOverloadedStorage": false,
  747. "scriptCanvasType": {
  748. "m_type": 7
  749. },
  750. "isNullPointer": false,
  751. "$type": "Transform",
  752. "value": {
  753. "Translation": [
  754. 0.0,
  755. 0.0,
  756. 0.0
  757. ],
  758. "Rotation": [
  759. 0.0,
  760. 0.0,
  761. 0.0,
  762. 1.0
  763. ],
  764. "Scale": 1.0
  765. },
  766. "label": "Source"
  767. },
  768. {
  769. "isOverloadedStorage": false,
  770. "scriptCanvasType": {
  771. "m_type": 3
  772. },
  773. "isNullPointer": false,
  774. "$type": "double",
  775. "value": 0.01,
  776. "label": "Tolerance"
  777. }
  778. ],
  779. "methodType": 1,
  780. "methodName": "ScriptCanvas_TransformFunctions_IsOrthogonal",
  781. "inputSlots": [
  782. {
  783. "m_id": "{0B282EED-6F81-4F4E-BC4E-39D8C0A637CB}"
  784. },
  785. {
  786. "m_id": "{5AE7164A-42A6-403B-BE3D-2525C2B535CF}"
  787. }
  788. ],
  789. "prettyClassName": "ScriptCanvas_TransformFunctions_IsOrthogonal"
  790. }
  791. }
  792. },
  793. {
  794. "Id": {
  795. "id": 320869119471490
  796. },
  797. "Name": "SC-Node(ScriptCanvas_TransformFunctions_MultiplyByUniformScale)",
  798. "Components": {
  799. "Component_[16910038542351983936]": {
  800. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  801. "Id": 16910038542351983936,
  802. "Slots": [
  803. {
  804. "id": {
  805. "m_id": "{C8558946-02D6-4553-8D1E-36E7089F47C5}"
  806. },
  807. "contracts": [
  808. {
  809. "$type": "SlotTypeContract"
  810. }
  811. ],
  812. "slotName": "Source",
  813. "Descriptor": {
  814. "ConnectionType": 1,
  815. "SlotType": 2
  816. },
  817. "DataType": 1
  818. },
  819. {
  820. "id": {
  821. "m_id": "{68521360-CBC1-478D-9025-C2885F771674}"
  822. },
  823. "contracts": [
  824. {
  825. "$type": "SlotTypeContract"
  826. }
  827. ],
  828. "slotName": "Scale",
  829. "Descriptor": {
  830. "ConnectionType": 1,
  831. "SlotType": 2
  832. },
  833. "DataType": 1
  834. },
  835. {
  836. "id": {
  837. "m_id": "{319C52B7-DC8F-4948-BB76-58DB526FDAF0}"
  838. },
  839. "contracts": [
  840. {
  841. "$type": "SlotTypeContract"
  842. }
  843. ],
  844. "slotName": "In",
  845. "Descriptor": {
  846. "ConnectionType": 1,
  847. "SlotType": 1
  848. }
  849. },
  850. {
  851. "id": {
  852. "m_id": "{24AFA8A2-9128-4DB8-A670-F11467187FEC}"
  853. },
  854. "contracts": [
  855. {
  856. "$type": "SlotTypeContract"
  857. }
  858. ],
  859. "slotName": "Out",
  860. "Descriptor": {
  861. "ConnectionType": 2,
  862. "SlotType": 1
  863. }
  864. },
  865. {
  866. "id": {
  867. "m_id": "{E694BA83-F82A-4B12-A8FC-74F3E0C4C8AE}"
  868. },
  869. "contracts": [
  870. {
  871. "$type": "SlotTypeContract"
  872. }
  873. ],
  874. "slotName": "Transform",
  875. "DisplayDataType": {
  876. "m_type": 7
  877. },
  878. "Descriptor": {
  879. "ConnectionType": 2,
  880. "SlotType": 2
  881. },
  882. "DataType": 1
  883. }
  884. ],
  885. "Datums": [
  886. {
  887. "isOverloadedStorage": false,
  888. "scriptCanvasType": {
  889. "m_type": 7
  890. },
  891. "isNullPointer": false,
  892. "$type": "Transform",
  893. "value": {
  894. "Translation": [
  895. 0.0,
  896. 0.0,
  897. 0.0
  898. ],
  899. "Rotation": [
  900. 0.0,
  901. 0.0,
  902. 0.0,
  903. 1.0
  904. ],
  905. "Scale": 1.0
  906. },
  907. "label": "Source"
  908. },
  909. {
  910. "isOverloadedStorage": false,
  911. "scriptCanvasType": {
  912. "m_type": 3
  913. },
  914. "isNullPointer": false,
  915. "$type": "double",
  916. "value": 0.0,
  917. "label": "Scale"
  918. }
  919. ],
  920. "methodType": 1,
  921. "methodName": "ScriptCanvas_TransformFunctions_MultiplyByUniformScale",
  922. "inputSlots": [
  923. {
  924. "m_id": "{C8558946-02D6-4553-8D1E-36E7089F47C5}"
  925. },
  926. {
  927. "m_id": "{68521360-CBC1-478D-9025-C2885F771674}"
  928. }
  929. ],
  930. "prettyClassName": "ScriptCanvas_TransformFunctions_MultiplyByUniformScale"
  931. }
  932. }
  933. },
  934. {
  935. "Id": {
  936. "id": 323574948867970
  937. },
  938. "Name": "SC-Node(ScriptCanvas_TransformFunctions_RotationXDegrees)",
  939. "Components": {
  940. "Component_[1701581283157459400]": {
  941. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  942. "Id": 1701581283157459400,
  943. "Slots": [
  944. {
  945. "id": {
  946. "m_id": "{8365204E-39FA-4D52-8437-FE7F45D45BF6}"
  947. },
  948. "contracts": [
  949. {
  950. "$type": "SlotTypeContract"
  951. }
  952. ],
  953. "slotName": "Degrees",
  954. "Descriptor": {
  955. "ConnectionType": 1,
  956. "SlotType": 2
  957. },
  958. "DataType": 1
  959. },
  960. {
  961. "id": {
  962. "m_id": "{4B6255B7-AE96-42E8-9F55-7FA691172AF4}"
  963. },
  964. "contracts": [
  965. {
  966. "$type": "SlotTypeContract"
  967. }
  968. ],
  969. "slotName": "In",
  970. "Descriptor": {
  971. "ConnectionType": 1,
  972. "SlotType": 1
  973. }
  974. },
  975. {
  976. "id": {
  977. "m_id": "{A1A79BF6-5140-4B0A-AC1F-DBE57B276518}"
  978. },
  979. "contracts": [
  980. {
  981. "$type": "SlotTypeContract"
  982. }
  983. ],
  984. "slotName": "Out",
  985. "Descriptor": {
  986. "ConnectionType": 2,
  987. "SlotType": 1
  988. }
  989. },
  990. {
  991. "id": {
  992. "m_id": "{9914BDD4-83AF-491B-9A8B-C6BA461DC994}"
  993. },
  994. "contracts": [
  995. {
  996. "$type": "SlotTypeContract"
  997. }
  998. ],
  999. "slotName": "Transform",
  1000. "DisplayDataType": {
  1001. "m_type": 7
  1002. },
  1003. "Descriptor": {
  1004. "ConnectionType": 2,
  1005. "SlotType": 2
  1006. },
  1007. "DataType": 1
  1008. }
  1009. ],
  1010. "Datums": [
  1011. {
  1012. "isOverloadedStorage": false,
  1013. "scriptCanvasType": {
  1014. "m_type": 3
  1015. },
  1016. "isNullPointer": false,
  1017. "$type": "double",
  1018. "value": 0.0,
  1019. "label": "Degrees"
  1020. }
  1021. ],
  1022. "methodType": 1,
  1023. "methodName": "ScriptCanvas_TransformFunctions_RotationXDegrees",
  1024. "inputSlots": [
  1025. {
  1026. "m_id": "{8365204E-39FA-4D52-8437-FE7F45D45BF6}"
  1027. }
  1028. ],
  1029. "prettyClassName": "ScriptCanvas_TransformFunctions_RotationXDegrees"
  1030. }
  1031. }
  1032. },
  1033. {
  1034. "Id": {
  1035. "id": 312682911805314
  1036. },
  1037. "Name": "SC-Node(ScriptCanvas_TransformFunctions_FromRotation)",
  1038. "Components": {
  1039. "Component_[1741454029762235896]": {
  1040. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1041. "Id": 1741454029762235896,
  1042. "Slots": [
  1043. {
  1044. "id": {
  1045. "m_id": "{6ABD334B-099D-46BC-8791-6A214EB9B3F9}"
  1046. },
  1047. "contracts": [
  1048. {
  1049. "$type": "SlotTypeContract"
  1050. }
  1051. ],
  1052. "slotName": "Source",
  1053. "Descriptor": {
  1054. "ConnectionType": 1,
  1055. "SlotType": 2
  1056. },
  1057. "DataType": 1
  1058. },
  1059. {
  1060. "id": {
  1061. "m_id": "{37A3632A-4A53-4BE0-BAE1-3247A684307D}"
  1062. },
  1063. "contracts": [
  1064. {
  1065. "$type": "SlotTypeContract"
  1066. }
  1067. ],
  1068. "slotName": "In",
  1069. "Descriptor": {
  1070. "ConnectionType": 1,
  1071. "SlotType": 1
  1072. }
  1073. },
  1074. {
  1075. "id": {
  1076. "m_id": "{89665069-15F5-49C3-984C-009AEF50699E}"
  1077. },
  1078. "contracts": [
  1079. {
  1080. "$type": "SlotTypeContract"
  1081. }
  1082. ],
  1083. "slotName": "Out",
  1084. "Descriptor": {
  1085. "ConnectionType": 2,
  1086. "SlotType": 1
  1087. }
  1088. },
  1089. {
  1090. "id": {
  1091. "m_id": "{73F6322B-5007-4490-A58E-2867965434C3}"
  1092. },
  1093. "contracts": [
  1094. {
  1095. "$type": "SlotTypeContract"
  1096. }
  1097. ],
  1098. "slotName": "Transform",
  1099. "DisplayDataType": {
  1100. "m_type": 7
  1101. },
  1102. "Descriptor": {
  1103. "ConnectionType": 2,
  1104. "SlotType": 2
  1105. },
  1106. "DataType": 1
  1107. }
  1108. ],
  1109. "Datums": [
  1110. {
  1111. "isOverloadedStorage": false,
  1112. "scriptCanvasType": {
  1113. "m_type": 6
  1114. },
  1115. "isNullPointer": false,
  1116. "$type": "Quaternion",
  1117. "value": [
  1118. 0.0,
  1119. 0.0,
  1120. 0.0,
  1121. 1.0
  1122. ],
  1123. "label": "Source"
  1124. }
  1125. ],
  1126. "methodType": 1,
  1127. "methodName": "ScriptCanvas_TransformFunctions_FromRotation",
  1128. "inputSlots": [
  1129. {
  1130. "m_id": "{6ABD334B-099D-46BC-8791-6A214EB9B3F9}"
  1131. }
  1132. ],
  1133. "prettyClassName": "ScriptCanvas_TransformFunctions_FromRotation"
  1134. }
  1135. }
  1136. },
  1137. {
  1138. "Id": {
  1139. "id": 310621327503234
  1140. },
  1141. "Name": "SC-Node(OrderedSequencer)",
  1142. "Components": {
  1143. "Component_[18265612921169669272]": {
  1144. "$type": "OrderedSequencer",
  1145. "Id": 18265612921169669272,
  1146. "Slots": [
  1147. {
  1148. "id": {
  1149. "m_id": "{6652C814-A2C3-4023-A24F-EBA4A1686577}"
  1150. },
  1151. "contracts": [
  1152. {
  1153. "$type": "SlotTypeContract"
  1154. }
  1155. ],
  1156. "slotName": "In",
  1157. "Descriptor": {
  1158. "ConnectionType": 1,
  1159. "SlotType": 1
  1160. }
  1161. },
  1162. {
  1163. "id": {
  1164. "m_id": "{D7B1AD87-8950-42D0-BBE0-707025375F6A}"
  1165. },
  1166. "contracts": [
  1167. {
  1168. "$type": "SlotTypeContract"
  1169. }
  1170. ],
  1171. "slotName": "Out 0",
  1172. "toolTip": "Output 0",
  1173. "Descriptor": {
  1174. "ConnectionType": 2,
  1175. "SlotType": 1
  1176. }
  1177. },
  1178. {
  1179. "id": {
  1180. "m_id": "{A38CF1FF-5583-4B2B-AFA1-4B60F0E02A56}"
  1181. },
  1182. "contracts": [
  1183. {
  1184. "$type": "SlotTypeContract"
  1185. }
  1186. ],
  1187. "slotName": "Out 1",
  1188. "DisplayGroup": {
  1189. "Value": 1020632324
  1190. },
  1191. "Descriptor": {
  1192. "ConnectionType": 2,
  1193. "SlotType": 1
  1194. }
  1195. },
  1196. {
  1197. "id": {
  1198. "m_id": "{8AD5B873-1CDA-49DE-A0A9-F9CDE8E301F3}"
  1199. },
  1200. "contracts": [
  1201. {
  1202. "$type": "SlotTypeContract"
  1203. }
  1204. ],
  1205. "slotName": "Out 2",
  1206. "DisplayGroup": {
  1207. "Value": 1020632324
  1208. },
  1209. "Descriptor": {
  1210. "ConnectionType": 2,
  1211. "SlotType": 1
  1212. }
  1213. },
  1214. {
  1215. "id": {
  1216. "m_id": "{53D3B348-4F82-4E9C-81E9-42E7167AE237}"
  1217. },
  1218. "contracts": [
  1219. {
  1220. "$type": "SlotTypeContract"
  1221. }
  1222. ],
  1223. "slotName": "Out 3",
  1224. "DisplayGroup": {
  1225. "Value": 1020632324
  1226. },
  1227. "Descriptor": {
  1228. "ConnectionType": 2,
  1229. "SlotType": 1
  1230. }
  1231. },
  1232. {
  1233. "id": {
  1234. "m_id": "{8ADDF8A0-06BA-43F1-896B-D8A6CD2C98DA}"
  1235. },
  1236. "contracts": [
  1237. {
  1238. "$type": "SlotTypeContract"
  1239. }
  1240. ],
  1241. "slotName": "Out 4",
  1242. "DisplayGroup": {
  1243. "Value": 1020632324
  1244. },
  1245. "Descriptor": {
  1246. "ConnectionType": 2,
  1247. "SlotType": 1
  1248. }
  1249. },
  1250. {
  1251. "id": {
  1252. "m_id": "{FD1D881D-8E35-470E-A825-69DC4EE569BC}"
  1253. },
  1254. "contracts": [
  1255. {
  1256. "$type": "SlotTypeContract"
  1257. }
  1258. ],
  1259. "slotName": "Out 5",
  1260. "DisplayGroup": {
  1261. "Value": 1020632324
  1262. },
  1263. "Descriptor": {
  1264. "ConnectionType": 2,
  1265. "SlotType": 1
  1266. }
  1267. },
  1268. {
  1269. "id": {
  1270. "m_id": "{A845D5C1-FAE2-4AE6-A958-9FA0C7EEC43C}"
  1271. },
  1272. "contracts": [
  1273. {
  1274. "$type": "SlotTypeContract"
  1275. }
  1276. ],
  1277. "slotName": "Out 6",
  1278. "DisplayGroup": {
  1279. "Value": 1020632324
  1280. },
  1281. "Descriptor": {
  1282. "ConnectionType": 2,
  1283. "SlotType": 1
  1284. }
  1285. },
  1286. {
  1287. "id": {
  1288. "m_id": "{7CD47393-8F2E-4E74-91B8-F4FEEC912BF2}"
  1289. },
  1290. "contracts": [
  1291. {
  1292. "$type": "SlotTypeContract"
  1293. }
  1294. ],
  1295. "slotName": "Out 7",
  1296. "DisplayGroup": {
  1297. "Value": 1020632324
  1298. },
  1299. "Descriptor": {
  1300. "ConnectionType": 2,
  1301. "SlotType": 1
  1302. }
  1303. },
  1304. {
  1305. "id": {
  1306. "m_id": "{A4709D89-B390-4A9F-AC55-332ECAAA84B4}"
  1307. },
  1308. "contracts": [
  1309. {
  1310. "$type": "SlotTypeContract"
  1311. }
  1312. ],
  1313. "slotName": "Out 8",
  1314. "DisplayGroup": {
  1315. "Value": 1020632324
  1316. },
  1317. "Descriptor": {
  1318. "ConnectionType": 2,
  1319. "SlotType": 1
  1320. }
  1321. },
  1322. {
  1323. "id": {
  1324. "m_id": "{D8D80BC5-EF6E-4CD0-B907-B1212AD49238}"
  1325. },
  1326. "contracts": [
  1327. {
  1328. "$type": "SlotTypeContract"
  1329. }
  1330. ],
  1331. "slotName": "Out 9",
  1332. "DisplayGroup": {
  1333. "Value": 1020632324
  1334. },
  1335. "Descriptor": {
  1336. "ConnectionType": 2,
  1337. "SlotType": 1
  1338. }
  1339. },
  1340. {
  1341. "id": {
  1342. "m_id": "{38EF286D-A096-4E73-8BA7-218EFFB43C88}"
  1343. },
  1344. "contracts": [
  1345. {
  1346. "$type": "SlotTypeContract"
  1347. }
  1348. ],
  1349. "slotName": "Out 10",
  1350. "DisplayGroup": {
  1351. "Value": 1020632324
  1352. },
  1353. "Descriptor": {
  1354. "ConnectionType": 2,
  1355. "SlotType": 1
  1356. }
  1357. },
  1358. {
  1359. "id": {
  1360. "m_id": "{B724AF04-93F6-41EE-857F-816709602120}"
  1361. },
  1362. "contracts": [
  1363. {
  1364. "$type": "SlotTypeContract"
  1365. }
  1366. ],
  1367. "slotName": "Out 11",
  1368. "DisplayGroup": {
  1369. "Value": 1020632324
  1370. },
  1371. "Descriptor": {
  1372. "ConnectionType": 2,
  1373. "SlotType": 1
  1374. }
  1375. },
  1376. {
  1377. "id": {
  1378. "m_id": "{21A68E8F-B837-4A81-84E4-1545B1AAD9C0}"
  1379. },
  1380. "contracts": [
  1381. {
  1382. "$type": "SlotTypeContract"
  1383. }
  1384. ],
  1385. "slotName": "Out 12",
  1386. "DisplayGroup": {
  1387. "Value": 1020632324
  1388. },
  1389. "Descriptor": {
  1390. "ConnectionType": 2,
  1391. "SlotType": 1
  1392. }
  1393. },
  1394. {
  1395. "id": {
  1396. "m_id": "{0C71338E-3B23-48E7-99F5-69487F9106A2}"
  1397. },
  1398. "contracts": [
  1399. {
  1400. "$type": "SlotTypeContract"
  1401. }
  1402. ],
  1403. "slotName": "Out 13",
  1404. "DisplayGroup": {
  1405. "Value": 1020632324
  1406. },
  1407. "Descriptor": {
  1408. "ConnectionType": 2,
  1409. "SlotType": 1
  1410. }
  1411. },
  1412. {
  1413. "id": {
  1414. "m_id": "{D5FE3BCC-0638-44A2-AAE2-FA605F8C6298}"
  1415. },
  1416. "contracts": [
  1417. {
  1418. "$type": "SlotTypeContract"
  1419. }
  1420. ],
  1421. "slotName": "Out 14",
  1422. "DisplayGroup": {
  1423. "Value": 1020632324
  1424. },
  1425. "Descriptor": {
  1426. "ConnectionType": 2,
  1427. "SlotType": 1
  1428. }
  1429. },
  1430. {
  1431. "id": {
  1432. "m_id": "{670DBFDA-C8A9-424D-9007-C210D055616A}"
  1433. },
  1434. "contracts": [
  1435. {
  1436. "$type": "SlotTypeContract"
  1437. }
  1438. ],
  1439. "slotName": "Out 15",
  1440. "DisplayGroup": {
  1441. "Value": 1020632324
  1442. },
  1443. "Descriptor": {
  1444. "ConnectionType": 2,
  1445. "SlotType": 1
  1446. }
  1447. },
  1448. {
  1449. "id": {
  1450. "m_id": "{99061E47-A65E-4F91-9833-334B18DF9E2C}"
  1451. },
  1452. "contracts": [
  1453. {
  1454. "$type": "SlotTypeContract"
  1455. }
  1456. ],
  1457. "slotName": "Out 16",
  1458. "DisplayGroup": {
  1459. "Value": 1020632324
  1460. },
  1461. "Descriptor": {
  1462. "ConnectionType": 2,
  1463. "SlotType": 1
  1464. }
  1465. },
  1466. {
  1467. "id": {
  1468. "m_id": "{515F1DFE-C807-428C-A361-57C4CE53074D}"
  1469. },
  1470. "contracts": [
  1471. {
  1472. "$type": "SlotTypeContract"
  1473. }
  1474. ],
  1475. "slotName": "Out 17",
  1476. "DisplayGroup": {
  1477. "Value": 1020632324
  1478. },
  1479. "Descriptor": {
  1480. "ConnectionType": 2,
  1481. "SlotType": 1
  1482. }
  1483. },
  1484. {
  1485. "id": {
  1486. "m_id": "{7DC373E4-750B-4393-B828-6B146011F770}"
  1487. },
  1488. "contracts": [
  1489. {
  1490. "$type": "SlotTypeContract"
  1491. }
  1492. ],
  1493. "slotName": "Out 18",
  1494. "DisplayGroup": {
  1495. "Value": 1020632324
  1496. },
  1497. "Descriptor": {
  1498. "ConnectionType": 2,
  1499. "SlotType": 1
  1500. }
  1501. },
  1502. {
  1503. "id": {
  1504. "m_id": "{3D6B6166-A91A-4E89-B8B7-99369DF2C5EF}"
  1505. },
  1506. "contracts": [
  1507. {
  1508. "$type": "SlotTypeContract"
  1509. }
  1510. ],
  1511. "slotName": "Out 19",
  1512. "DisplayGroup": {
  1513. "Value": 1020632324
  1514. },
  1515. "Descriptor": {
  1516. "ConnectionType": 2,
  1517. "SlotType": 1
  1518. }
  1519. },
  1520. {
  1521. "id": {
  1522. "m_id": "{0EE6E9D6-7DC8-4A5C-AFCA-3AA6B90A9990}"
  1523. },
  1524. "contracts": [
  1525. {
  1526. "$type": "SlotTypeContract"
  1527. }
  1528. ],
  1529. "slotName": "Out 20",
  1530. "DisplayGroup": {
  1531. "Value": 1020632324
  1532. },
  1533. "Descriptor": {
  1534. "ConnectionType": 2,
  1535. "SlotType": 1
  1536. }
  1537. },
  1538. {
  1539. "id": {
  1540. "m_id": "{213438E4-23F2-4CC6-98D1-3F1D93B95703}"
  1541. },
  1542. "contracts": [
  1543. {
  1544. "$type": "SlotTypeContract"
  1545. }
  1546. ],
  1547. "slotName": "Out 21",
  1548. "DisplayGroup": {
  1549. "Value": 1020632324
  1550. },
  1551. "Descriptor": {
  1552. "ConnectionType": 2,
  1553. "SlotType": 1
  1554. }
  1555. }
  1556. ]
  1557. }
  1558. }
  1559. },
  1560. {
  1561. "Id": {
  1562. "id": 338998176427906
  1563. },
  1564. "Name": "SC-Node(Mark Complete)",
  1565. "Components": {
  1566. "Component_[1983209176104393791]": {
  1567. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1568. "Id": 1983209176104393791,
  1569. "Slots": [
  1570. {
  1571. "isVisibile": false,
  1572. "id": {
  1573. "m_id": "{01E392DD-AFB9-4AFA-BCBF-CDB3FB2EF13C}"
  1574. },
  1575. "contracts": [
  1576. {
  1577. "$type": "SlotTypeContract"
  1578. }
  1579. ],
  1580. "slotName": "Invalid BehaviorContext::Class name: 0",
  1581. "Descriptor": {
  1582. "ConnectionType": 1,
  1583. "SlotType": 2
  1584. },
  1585. "DataType": 1
  1586. },
  1587. {
  1588. "id": {
  1589. "m_id": "{A01539DC-5318-441F-AB90-E6F790C4DA06}"
  1590. },
  1591. "contracts": [
  1592. {
  1593. "$type": "SlotTypeContract"
  1594. }
  1595. ],
  1596. "slotName": "Report",
  1597. "toolTip": "additional notes for the test report",
  1598. "Descriptor": {
  1599. "ConnectionType": 1,
  1600. "SlotType": 2
  1601. },
  1602. "DataType": 1
  1603. },
  1604. {
  1605. "id": {
  1606. "m_id": "{1978E74E-BD92-4D47-9596-7466CFAEC9A9}"
  1607. },
  1608. "contracts": [
  1609. {
  1610. "$type": "SlotTypeContract"
  1611. }
  1612. ],
  1613. "slotName": "In",
  1614. "Descriptor": {
  1615. "ConnectionType": 1,
  1616. "SlotType": 1
  1617. }
  1618. },
  1619. {
  1620. "id": {
  1621. "m_id": "{17E0973A-7E43-4C73-9206-7091AAC45126}"
  1622. },
  1623. "contracts": [
  1624. {
  1625. "$type": "SlotTypeContract"
  1626. }
  1627. ],
  1628. "slotName": "Out",
  1629. "Descriptor": {
  1630. "ConnectionType": 2,
  1631. "SlotType": 1
  1632. }
  1633. }
  1634. ],
  1635. "Datums": [
  1636. {
  1637. "isOverloadedStorage": false,
  1638. "scriptCanvasType": {
  1639. "m_type": 4,
  1640. "m_azType": "{85C66E59-F012-460E-9756-B36819753F4D}"
  1641. },
  1642. "isNullPointer": true,
  1643. "label": "Invalid BehaviorContext::Class name: 0"
  1644. },
  1645. {
  1646. "isOverloadedStorage": false,
  1647. "scriptCanvasType": {
  1648. "m_type": 5
  1649. },
  1650. "isNullPointer": false,
  1651. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1652. "value": "",
  1653. "label": "Report"
  1654. }
  1655. ],
  1656. "methodType": 2,
  1657. "methodName": "Mark Complete",
  1658. "className": "Unit Testing",
  1659. "inputSlots": [
  1660. {
  1661. "m_id": "{01E392DD-AFB9-4AFA-BCBF-CDB3FB2EF13C}"
  1662. },
  1663. {
  1664. "m_id": "{A01539DC-5318-441F-AB90-E6F790C4DA06}"
  1665. }
  1666. ],
  1667. "prettyClassName": "Unit Testing"
  1668. }
  1669. }
  1670. },
  1671. {
  1672. "Id": {
  1673. "id": 324090344943490
  1674. },
  1675. "Name": "SC-Node(ScriptCanvas_TransformFunctions_RotationYDegrees)",
  1676. "Components": {
  1677. "Component_[2416716611304633974]": {
  1678. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1679. "Id": 2416716611304633974,
  1680. "Slots": [
  1681. {
  1682. "id": {
  1683. "m_id": "{7B403626-6298-4DEE-B29B-71935365A61A}"
  1684. },
  1685. "contracts": [
  1686. {
  1687. "$type": "SlotTypeContract"
  1688. }
  1689. ],
  1690. "slotName": "Degrees",
  1691. "Descriptor": {
  1692. "ConnectionType": 1,
  1693. "SlotType": 2
  1694. },
  1695. "DataType": 1
  1696. },
  1697. {
  1698. "id": {
  1699. "m_id": "{2DA80CE3-9304-4A7A-9ABE-27D03FB02E0D}"
  1700. },
  1701. "contracts": [
  1702. {
  1703. "$type": "SlotTypeContract"
  1704. }
  1705. ],
  1706. "slotName": "In",
  1707. "Descriptor": {
  1708. "ConnectionType": 1,
  1709. "SlotType": 1
  1710. }
  1711. },
  1712. {
  1713. "id": {
  1714. "m_id": "{1E8F43AE-7CBA-4ADB-BBC9-310026DE3C93}"
  1715. },
  1716. "contracts": [
  1717. {
  1718. "$type": "SlotTypeContract"
  1719. }
  1720. ],
  1721. "slotName": "Out",
  1722. "Descriptor": {
  1723. "ConnectionType": 2,
  1724. "SlotType": 1
  1725. }
  1726. },
  1727. {
  1728. "id": {
  1729. "m_id": "{2DAC3DA0-2669-4704-8E3C-C00394CD9A90}"
  1730. },
  1731. "contracts": [
  1732. {
  1733. "$type": "SlotTypeContract"
  1734. }
  1735. ],
  1736. "slotName": "Transform",
  1737. "DisplayDataType": {
  1738. "m_type": 7
  1739. },
  1740. "Descriptor": {
  1741. "ConnectionType": 2,
  1742. "SlotType": 2
  1743. },
  1744. "DataType": 1
  1745. }
  1746. ],
  1747. "Datums": [
  1748. {
  1749. "isOverloadedStorage": false,
  1750. "scriptCanvasType": {
  1751. "m_type": 3
  1752. },
  1753. "isNullPointer": false,
  1754. "$type": "double",
  1755. "value": 0.0,
  1756. "label": "Degrees"
  1757. }
  1758. ],
  1759. "methodType": 1,
  1760. "methodName": "ScriptCanvas_TransformFunctions_RotationYDegrees",
  1761. "inputSlots": [
  1762. {
  1763. "m_id": "{7B403626-6298-4DEE-B29B-71935365A61A}"
  1764. }
  1765. ],
  1766. "prettyClassName": "ScriptCanvas_TransformFunctions_RotationYDegrees"
  1767. }
  1768. }
  1769. },
  1770. {
  1771. "Id": {
  1772. "id": 321461824958338
  1773. },
  1774. "Name": "SC-Node(ScriptCanvas_TransformFunctions_MultiplyByVector3)",
  1775. "Components": {
  1776. "Component_[2847709733220546738]": {
  1777. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1778. "Id": 2847709733220546738,
  1779. "Slots": [
  1780. {
  1781. "id": {
  1782. "m_id": "{418C15E9-1BEB-4686-AA5E-E540BE056519}"
  1783. },
  1784. "contracts": [
  1785. {
  1786. "$type": "SlotTypeContract"
  1787. }
  1788. ],
  1789. "slotName": "Source",
  1790. "Descriptor": {
  1791. "ConnectionType": 1,
  1792. "SlotType": 2
  1793. },
  1794. "DataType": 1
  1795. },
  1796. {
  1797. "id": {
  1798. "m_id": "{946A3846-48E5-4679-9EB2-AD0E057DDDD5}"
  1799. },
  1800. "contracts": [
  1801. {
  1802. "$type": "SlotTypeContract"
  1803. }
  1804. ],
  1805. "slotName": "Multiplier",
  1806. "Descriptor": {
  1807. "ConnectionType": 1,
  1808. "SlotType": 2
  1809. },
  1810. "DataType": 1
  1811. },
  1812. {
  1813. "id": {
  1814. "m_id": "{6B05F244-288D-49D4-A5DC-1DE54B085635}"
  1815. },
  1816. "contracts": [
  1817. {
  1818. "$type": "SlotTypeContract"
  1819. }
  1820. ],
  1821. "slotName": "In",
  1822. "Descriptor": {
  1823. "ConnectionType": 1,
  1824. "SlotType": 1
  1825. }
  1826. },
  1827. {
  1828. "id": {
  1829. "m_id": "{ADC695E0-7910-44A5-9F9F-F0641B802183}"
  1830. },
  1831. "contracts": [
  1832. {
  1833. "$type": "SlotTypeContract"
  1834. }
  1835. ],
  1836. "slotName": "Out",
  1837. "Descriptor": {
  1838. "ConnectionType": 2,
  1839. "SlotType": 1
  1840. }
  1841. },
  1842. {
  1843. "id": {
  1844. "m_id": "{0311B4E5-E5B6-4589-BF47-DD2D4ED9E480}"
  1845. },
  1846. "contracts": [
  1847. {
  1848. "$type": "SlotTypeContract"
  1849. }
  1850. ],
  1851. "slotName": "Vector3",
  1852. "DisplayDataType": {
  1853. "m_type": 8
  1854. },
  1855. "Descriptor": {
  1856. "ConnectionType": 2,
  1857. "SlotType": 2
  1858. },
  1859. "DataType": 1
  1860. }
  1861. ],
  1862. "Datums": [
  1863. {
  1864. "isOverloadedStorage": false,
  1865. "scriptCanvasType": {
  1866. "m_type": 7
  1867. },
  1868. "isNullPointer": false,
  1869. "$type": "Transform",
  1870. "value": {
  1871. "Translation": [
  1872. 0.0,
  1873. 0.0,
  1874. 0.0
  1875. ],
  1876. "Rotation": [
  1877. 0.0,
  1878. 0.0,
  1879. 0.0,
  1880. 1.0
  1881. ],
  1882. "Scale": 1.0
  1883. },
  1884. "label": "Source"
  1885. },
  1886. {
  1887. "isOverloadedStorage": false,
  1888. "scriptCanvasType": {
  1889. "m_type": 8
  1890. },
  1891. "isNullPointer": false,
  1892. "$type": "Vector3",
  1893. "value": [
  1894. 0.0,
  1895. 0.0,
  1896. 0.0
  1897. ],
  1898. "label": "Multiplier"
  1899. }
  1900. ],
  1901. "methodType": 1,
  1902. "methodName": "ScriptCanvas_TransformFunctions_MultiplyByVector3",
  1903. "inputSlots": [
  1904. {
  1905. "m_id": "{418C15E9-1BEB-4686-AA5E-E540BE056519}"
  1906. },
  1907. {
  1908. "m_id": "{946A3846-48E5-4679-9EB2-AD0E057DDDD5}"
  1909. }
  1910. ],
  1911. "prettyClassName": "ScriptCanvas_TransformFunctions_MultiplyByVector3"
  1912. }
  1913. }
  1914. },
  1915. {
  1916. "Id": {
  1917. "id": 315697978847106
  1918. },
  1919. "Name": "SC-Node(ScriptCanvas_TransformFunctions_FromScale)",
  1920. "Components": {
  1921. "Component_[2990488478054025968]": {
  1922. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1923. "Id": 2990488478054025968,
  1924. "Slots": [
  1925. {
  1926. "id": {
  1927. "m_id": "{140F7A18-A7A0-4977-9E12-45A29B6EF20A}"
  1928. },
  1929. "contracts": [
  1930. {
  1931. "$type": "SlotTypeContract"
  1932. }
  1933. ],
  1934. "slotName": "Scale",
  1935. "Descriptor": {
  1936. "ConnectionType": 1,
  1937. "SlotType": 2
  1938. },
  1939. "DataType": 1
  1940. },
  1941. {
  1942. "id": {
  1943. "m_id": "{91B2EAF4-22FB-4C46-B9D9-5E86B4A6EDC2}"
  1944. },
  1945. "contracts": [
  1946. {
  1947. "$type": "SlotTypeContract"
  1948. }
  1949. ],
  1950. "slotName": "In",
  1951. "Descriptor": {
  1952. "ConnectionType": 1,
  1953. "SlotType": 1
  1954. }
  1955. },
  1956. {
  1957. "id": {
  1958. "m_id": "{5720DE65-4F7E-450A-9307-E62719B9D89D}"
  1959. },
  1960. "contracts": [
  1961. {
  1962. "$type": "SlotTypeContract"
  1963. }
  1964. ],
  1965. "slotName": "Out",
  1966. "Descriptor": {
  1967. "ConnectionType": 2,
  1968. "SlotType": 1
  1969. }
  1970. },
  1971. {
  1972. "id": {
  1973. "m_id": "{B1E18C19-A8EA-4842-8B21-233F49D49B4D}"
  1974. },
  1975. "contracts": [
  1976. {
  1977. "$type": "SlotTypeContract"
  1978. }
  1979. ],
  1980. "slotName": "Transform",
  1981. "DisplayDataType": {
  1982. "m_type": 7
  1983. },
  1984. "Descriptor": {
  1985. "ConnectionType": 2,
  1986. "SlotType": 2
  1987. },
  1988. "DataType": 1
  1989. }
  1990. ],
  1991. "Datums": [
  1992. {
  1993. "isOverloadedStorage": false,
  1994. "scriptCanvasType": {
  1995. "m_type": 3
  1996. },
  1997. "isNullPointer": false,
  1998. "$type": "double",
  1999. "value": 0.0,
  2000. "label": "Scale"
  2001. }
  2002. ],
  2003. "methodType": 1,
  2004. "methodName": "ScriptCanvas_TransformFunctions_FromScale",
  2005. "inputSlots": [
  2006. {
  2007. "m_id": "{140F7A18-A7A0-4977-9E12-45A29B6EF20A}"
  2008. }
  2009. ],
  2010. "prettyClassName": "ScriptCanvas_TransformFunctions_FromScale"
  2011. }
  2012. }
  2013. },
  2014. {
  2015. "Id": {
  2016. "id": 319159722487682
  2017. },
  2018. "Name": "SC-Node(ScriptCanvas_TransformFunctions_IsClose)",
  2019. "Components": {
  2020. "Component_[3282320470223415251]": {
  2021. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2022. "Id": 3282320470223415251,
  2023. "Slots": [
  2024. {
  2025. "id": {
  2026. "m_id": "{7F919E37-9D4C-441E-9896-991A4D9E794E}"
  2027. },
  2028. "contracts": [
  2029. {
  2030. "$type": "SlotTypeContract"
  2031. }
  2032. ],
  2033. "slotName": "A",
  2034. "Descriptor": {
  2035. "ConnectionType": 1,
  2036. "SlotType": 2
  2037. },
  2038. "DataType": 1
  2039. },
  2040. {
  2041. "id": {
  2042. "m_id": "{C38ACF2A-7F8F-4046-9C7E-3CA3CEAB7F8D}"
  2043. },
  2044. "contracts": [
  2045. {
  2046. "$type": "SlotTypeContract"
  2047. }
  2048. ],
  2049. "slotName": "B",
  2050. "Descriptor": {
  2051. "ConnectionType": 1,
  2052. "SlotType": 2
  2053. },
  2054. "DataType": 1
  2055. },
  2056. {
  2057. "id": {
  2058. "m_id": "{49D3B337-9A1E-4639-8C49-7BF3BA2207D5}"
  2059. },
  2060. "contracts": [
  2061. {
  2062. "$type": "SlotTypeContract"
  2063. }
  2064. ],
  2065. "slotName": "Tolerance",
  2066. "Descriptor": {
  2067. "ConnectionType": 1,
  2068. "SlotType": 2
  2069. },
  2070. "DataType": 1
  2071. },
  2072. {
  2073. "id": {
  2074. "m_id": "{68EBB920-9A13-4C22-B307-0B3104CE26C0}"
  2075. },
  2076. "contracts": [
  2077. {
  2078. "$type": "SlotTypeContract"
  2079. }
  2080. ],
  2081. "slotName": "In",
  2082. "Descriptor": {
  2083. "ConnectionType": 1,
  2084. "SlotType": 1
  2085. }
  2086. },
  2087. {
  2088. "id": {
  2089. "m_id": "{11810900-6245-4D7A-8F02-87646B2DFCA6}"
  2090. },
  2091. "contracts": [
  2092. {
  2093. "$type": "SlotTypeContract"
  2094. }
  2095. ],
  2096. "slotName": "Out",
  2097. "Descriptor": {
  2098. "ConnectionType": 2,
  2099. "SlotType": 1
  2100. }
  2101. },
  2102. {
  2103. "id": {
  2104. "m_id": "{592BC055-1490-456C-A84E-059B25AE485D}"
  2105. },
  2106. "contracts": [
  2107. {
  2108. "$type": "SlotTypeContract"
  2109. }
  2110. ],
  2111. "slotName": "Boolean",
  2112. "DisplayDataType": {
  2113. "m_type": 0
  2114. },
  2115. "Descriptor": {
  2116. "ConnectionType": 2,
  2117. "SlotType": 2
  2118. },
  2119. "DataType": 1
  2120. }
  2121. ],
  2122. "Datums": [
  2123. {
  2124. "isOverloadedStorage": false,
  2125. "scriptCanvasType": {
  2126. "m_type": 7
  2127. },
  2128. "isNullPointer": false,
  2129. "$type": "Transform",
  2130. "value": {
  2131. "Translation": [
  2132. 0.0,
  2133. 0.0,
  2134. 0.0
  2135. ],
  2136. "Rotation": [
  2137. 0.0,
  2138. 0.0,
  2139. 0.0,
  2140. 1.0
  2141. ],
  2142. "Scale": 1.0
  2143. },
  2144. "label": "A"
  2145. },
  2146. {
  2147. "isOverloadedStorage": false,
  2148. "scriptCanvasType": {
  2149. "m_type": 7
  2150. },
  2151. "isNullPointer": false,
  2152. "$type": "Transform",
  2153. "value": {
  2154. "Translation": [
  2155. 0.0,
  2156. 0.0,
  2157. 0.0
  2158. ],
  2159. "Rotation": [
  2160. 0.0,
  2161. 0.0,
  2162. 0.0,
  2163. 1.0
  2164. ],
  2165. "Scale": 1.0
  2166. },
  2167. "label": "B"
  2168. },
  2169. {
  2170. "isOverloadedStorage": false,
  2171. "scriptCanvasType": {
  2172. "m_type": 3
  2173. },
  2174. "isNullPointer": false,
  2175. "$type": "double",
  2176. "value": 0.01,
  2177. "label": "Tolerance"
  2178. }
  2179. ],
  2180. "methodType": 1,
  2181. "methodName": "ScriptCanvas_TransformFunctions_IsClose",
  2182. "inputSlots": [
  2183. {
  2184. "m_id": "{7F919E37-9D4C-441E-9896-991A4D9E794E}"
  2185. },
  2186. {
  2187. "m_id": "{C38ACF2A-7F8F-4046-9C7E-3CA3CEAB7F8D}"
  2188. },
  2189. {
  2190. "m_id": "{49D3B337-9A1E-4639-8C49-7BF3BA2207D5}"
  2191. }
  2192. ],
  2193. "prettyClassName": "ScriptCanvas_TransformFunctions_IsClose"
  2194. }
  2195. }
  2196. },
  2197. {
  2198. "Id": {
  2199. "id": 316934929428354
  2200. },
  2201. "Name": "SC-Node(ScriptCanvas_TransformFunctions_GetForward)",
  2202. "Components": {
  2203. "Component_[3347543911770536154]": {
  2204. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2205. "Id": 3347543911770536154,
  2206. "Slots": [
  2207. {
  2208. "id": {
  2209. "m_id": "{92F1AD1E-3CD8-4E63-834D-58B61B3B63A2}"
  2210. },
  2211. "contracts": [
  2212. {
  2213. "$type": "SlotTypeContract"
  2214. }
  2215. ],
  2216. "slotName": "Source",
  2217. "Descriptor": {
  2218. "ConnectionType": 1,
  2219. "SlotType": 2
  2220. },
  2221. "DataType": 1
  2222. },
  2223. {
  2224. "id": {
  2225. "m_id": "{7F8950DB-EB75-466E-AFD3-1B5943AAE9AD}"
  2226. },
  2227. "contracts": [
  2228. {
  2229. "$type": "SlotTypeContract"
  2230. }
  2231. ],
  2232. "slotName": "Scale",
  2233. "Descriptor": {
  2234. "ConnectionType": 1,
  2235. "SlotType": 2
  2236. },
  2237. "DataType": 1
  2238. },
  2239. {
  2240. "id": {
  2241. "m_id": "{F2A1CE91-05D2-4F4F-896F-5347369589F8}"
  2242. },
  2243. "contracts": [
  2244. {
  2245. "$type": "SlotTypeContract"
  2246. }
  2247. ],
  2248. "slotName": "In",
  2249. "Descriptor": {
  2250. "ConnectionType": 1,
  2251. "SlotType": 1
  2252. }
  2253. },
  2254. {
  2255. "id": {
  2256. "m_id": "{9350B5E0-4257-4A01-AF2B-985F9240458C}"
  2257. },
  2258. "contracts": [
  2259. {
  2260. "$type": "SlotTypeContract"
  2261. }
  2262. ],
  2263. "slotName": "Out",
  2264. "Descriptor": {
  2265. "ConnectionType": 2,
  2266. "SlotType": 1
  2267. }
  2268. },
  2269. {
  2270. "id": {
  2271. "m_id": "{DAEE207F-C7EA-4CC4-A27E-8142D4CFF8D2}"
  2272. },
  2273. "contracts": [
  2274. {
  2275. "$type": "SlotTypeContract"
  2276. }
  2277. ],
  2278. "slotName": "Vector3",
  2279. "DisplayDataType": {
  2280. "m_type": 8
  2281. },
  2282. "Descriptor": {
  2283. "ConnectionType": 2,
  2284. "SlotType": 2
  2285. },
  2286. "DataType": 1
  2287. }
  2288. ],
  2289. "Datums": [
  2290. {
  2291. "isOverloadedStorage": false,
  2292. "scriptCanvasType": {
  2293. "m_type": 7
  2294. },
  2295. "isNullPointer": false,
  2296. "$type": "Transform",
  2297. "value": {
  2298. "Translation": [
  2299. 0.0,
  2300. 0.0,
  2301. 0.0
  2302. ],
  2303. "Rotation": [
  2304. 0.0,
  2305. 0.0,
  2306. 0.0,
  2307. 1.0
  2308. ],
  2309. "Scale": 1.0
  2310. },
  2311. "label": "Source"
  2312. },
  2313. {
  2314. "isOverloadedStorage": false,
  2315. "scriptCanvasType": {
  2316. "m_type": 3
  2317. },
  2318. "isNullPointer": false,
  2319. "$type": "double",
  2320. "value": 1.0,
  2321. "label": "Scale"
  2322. }
  2323. ],
  2324. "methodType": 1,
  2325. "methodName": "ScriptCanvas_TransformFunctions_GetForward",
  2326. "inputSlots": [
  2327. {
  2328. "m_id": "{92F1AD1E-3CD8-4E63-834D-58B61B3B63A2}"
  2329. },
  2330. {
  2331. "m_id": "{7F8950DB-EB75-466E-AFD3-1B5943AAE9AD}"
  2332. }
  2333. ],
  2334. "prettyClassName": "ScriptCanvas_TransformFunctions_GetForward"
  2335. }
  2336. }
  2337. },
  2338. {
  2339. "Id": {
  2340. "id": 317527634915202
  2341. },
  2342. "Name": "SC-Node(ScriptCanvas_TransformFunctions_GetRight)",
  2343. "Components": {
  2344. "Component_[3661877003290377147]": {
  2345. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2346. "Id": 3661877003290377147,
  2347. "Slots": [
  2348. {
  2349. "id": {
  2350. "m_id": "{BA2D0239-AF02-4052-8D58-B6631802D65E}"
  2351. },
  2352. "contracts": [
  2353. {
  2354. "$type": "SlotTypeContract"
  2355. }
  2356. ],
  2357. "slotName": "Source",
  2358. "Descriptor": {
  2359. "ConnectionType": 1,
  2360. "SlotType": 2
  2361. },
  2362. "DataType": 1
  2363. },
  2364. {
  2365. "id": {
  2366. "m_id": "{07ED0383-E15D-4866-B83B-11924E9266B6}"
  2367. },
  2368. "contracts": [
  2369. {
  2370. "$type": "SlotTypeContract"
  2371. }
  2372. ],
  2373. "slotName": "Scale",
  2374. "Descriptor": {
  2375. "ConnectionType": 1,
  2376. "SlotType": 2
  2377. },
  2378. "DataType": 1
  2379. },
  2380. {
  2381. "id": {
  2382. "m_id": "{EEDEC50C-5FCE-42B3-89DD-04D09A4DB39B}"
  2383. },
  2384. "contracts": [
  2385. {
  2386. "$type": "SlotTypeContract"
  2387. }
  2388. ],
  2389. "slotName": "In",
  2390. "Descriptor": {
  2391. "ConnectionType": 1,
  2392. "SlotType": 1
  2393. }
  2394. },
  2395. {
  2396. "id": {
  2397. "m_id": "{BE5182BD-F58A-44CF-BCF6-D0FB39C5F8E2}"
  2398. },
  2399. "contracts": [
  2400. {
  2401. "$type": "SlotTypeContract"
  2402. }
  2403. ],
  2404. "slotName": "Out",
  2405. "Descriptor": {
  2406. "ConnectionType": 2,
  2407. "SlotType": 1
  2408. }
  2409. },
  2410. {
  2411. "id": {
  2412. "m_id": "{DECB55D5-30C1-4A6E-8AE7-C00AB8D83F45}"
  2413. },
  2414. "contracts": [
  2415. {
  2416. "$type": "SlotTypeContract"
  2417. }
  2418. ],
  2419. "slotName": "Vector3",
  2420. "DisplayDataType": {
  2421. "m_type": 8
  2422. },
  2423. "Descriptor": {
  2424. "ConnectionType": 2,
  2425. "SlotType": 2
  2426. },
  2427. "DataType": 1
  2428. }
  2429. ],
  2430. "Datums": [
  2431. {
  2432. "isOverloadedStorage": false,
  2433. "scriptCanvasType": {
  2434. "m_type": 7
  2435. },
  2436. "isNullPointer": false,
  2437. "$type": "Transform",
  2438. "value": {
  2439. "Translation": [
  2440. 0.0,
  2441. 0.0,
  2442. 0.0
  2443. ],
  2444. "Rotation": [
  2445. 0.0,
  2446. 0.0,
  2447. 0.0,
  2448. 1.0
  2449. ],
  2450. "Scale": 1.0
  2451. },
  2452. "label": "Source"
  2453. },
  2454. {
  2455. "isOverloadedStorage": false,
  2456. "scriptCanvasType": {
  2457. "m_type": 3
  2458. },
  2459. "isNullPointer": false,
  2460. "$type": "double",
  2461. "value": 1.0,
  2462. "label": "Scale"
  2463. }
  2464. ],
  2465. "methodType": 1,
  2466. "methodName": "ScriptCanvas_TransformFunctions_GetRight",
  2467. "inputSlots": [
  2468. {
  2469. "m_id": "{BA2D0239-AF02-4052-8D58-B6631802D65E}"
  2470. },
  2471. {
  2472. "m_id": "{07ED0383-E15D-4866-B83B-11924E9266B6}"
  2473. }
  2474. ],
  2475. "prettyClassName": "ScriptCanvas_TransformFunctions_GetRight"
  2476. }
  2477. }
  2478. },
  2479. {
  2480. "Id": {
  2481. "id": 324605741019010
  2482. },
  2483. "Name": "SC-Node(ScriptCanvas_TransformFunctions_RotationZDegrees)",
  2484. "Components": {
  2485. "Component_[4963606640174982683]": {
  2486. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2487. "Id": 4963606640174982683,
  2488. "Slots": [
  2489. {
  2490. "id": {
  2491. "m_id": "{6352B53E-97E3-4088-9C29-50C95B59E5E8}"
  2492. },
  2493. "contracts": [
  2494. {
  2495. "$type": "SlotTypeContract"
  2496. }
  2497. ],
  2498. "slotName": "Degrees",
  2499. "Descriptor": {
  2500. "ConnectionType": 1,
  2501. "SlotType": 2
  2502. },
  2503. "DataType": 1
  2504. },
  2505. {
  2506. "id": {
  2507. "m_id": "{3ABC06BB-ACD9-4E4F-B812-536B5FC1787B}"
  2508. },
  2509. "contracts": [
  2510. {
  2511. "$type": "SlotTypeContract"
  2512. }
  2513. ],
  2514. "slotName": "In",
  2515. "Descriptor": {
  2516. "ConnectionType": 1,
  2517. "SlotType": 1
  2518. }
  2519. },
  2520. {
  2521. "id": {
  2522. "m_id": "{83FB6B0E-1101-4854-95E5-646C98AF4262}"
  2523. },
  2524. "contracts": [
  2525. {
  2526. "$type": "SlotTypeContract"
  2527. }
  2528. ],
  2529. "slotName": "Out",
  2530. "Descriptor": {
  2531. "ConnectionType": 2,
  2532. "SlotType": 1
  2533. }
  2534. },
  2535. {
  2536. "id": {
  2537. "m_id": "{94632450-C8C9-43B4-8AA5-88F132C1FE0E}"
  2538. },
  2539. "contracts": [
  2540. {
  2541. "$type": "SlotTypeContract"
  2542. }
  2543. ],
  2544. "slotName": "Transform",
  2545. "DisplayDataType": {
  2546. "m_type": 7
  2547. },
  2548. "Descriptor": {
  2549. "ConnectionType": 2,
  2550. "SlotType": 2
  2551. },
  2552. "DataType": 1
  2553. }
  2554. ],
  2555. "Datums": [
  2556. {
  2557. "isOverloadedStorage": false,
  2558. "scriptCanvasType": {
  2559. "m_type": 3
  2560. },
  2561. "isNullPointer": false,
  2562. "$type": "double",
  2563. "value": 0.0,
  2564. "label": "Degrees"
  2565. }
  2566. ],
  2567. "methodType": 1,
  2568. "methodName": "ScriptCanvas_TransformFunctions_RotationZDegrees",
  2569. "inputSlots": [
  2570. {
  2571. "m_id": "{6352B53E-97E3-4088-9C29-50C95B59E5E8}"
  2572. }
  2573. ],
  2574. "prettyClassName": "ScriptCanvas_TransformFunctions_RotationZDegrees"
  2575. }
  2576. }
  2577. },
  2578. {
  2579. "Id": {
  2580. "id": 311437371289474
  2581. },
  2582. "Name": "SC-Node(ScriptCanvas_TransformFunctions_FromMatrix3x3)",
  2583. "Components": {
  2584. "Component_[6235306083823675738]": {
  2585. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2586. "Id": 6235306083823675738,
  2587. "Slots": [
  2588. {
  2589. "id": {
  2590. "m_id": "{24375F3D-D9F1-4B32-8876-0C288714ACC1}"
  2591. },
  2592. "contracts": [
  2593. {
  2594. "$type": "SlotTypeContract"
  2595. }
  2596. ],
  2597. "slotName": "Source",
  2598. "Descriptor": {
  2599. "ConnectionType": 1,
  2600. "SlotType": 2
  2601. },
  2602. "DataType": 1
  2603. },
  2604. {
  2605. "id": {
  2606. "m_id": "{FF747CF6-C5EC-4DF0-8AF9-043465CE8A20}"
  2607. },
  2608. "contracts": [
  2609. {
  2610. "$type": "SlotTypeContract"
  2611. }
  2612. ],
  2613. "slotName": "In",
  2614. "Descriptor": {
  2615. "ConnectionType": 1,
  2616. "SlotType": 1
  2617. }
  2618. },
  2619. {
  2620. "id": {
  2621. "m_id": "{6D9DEAA2-6038-430F-B0C7-62AEEAA86468}"
  2622. },
  2623. "contracts": [
  2624. {
  2625. "$type": "SlotTypeContract"
  2626. }
  2627. ],
  2628. "slotName": "Out",
  2629. "Descriptor": {
  2630. "ConnectionType": 2,
  2631. "SlotType": 1
  2632. }
  2633. },
  2634. {
  2635. "id": {
  2636. "m_id": "{B120F2BA-7A31-4737-BB7C-BC2113B44333}"
  2637. },
  2638. "contracts": [
  2639. {
  2640. "$type": "SlotTypeContract"
  2641. }
  2642. ],
  2643. "slotName": "Transform",
  2644. "DisplayDataType": {
  2645. "m_type": 7
  2646. },
  2647. "Descriptor": {
  2648. "ConnectionType": 2,
  2649. "SlotType": 2
  2650. },
  2651. "DataType": 1
  2652. }
  2653. ],
  2654. "Datums": [
  2655. {
  2656. "isOverloadedStorage": false,
  2657. "scriptCanvasType": {
  2658. "m_type": 14
  2659. },
  2660. "isNullPointer": false,
  2661. "$type": "Matrix3x3",
  2662. "value": [
  2663. 1.0,
  2664. 0.0,
  2665. 0.0,
  2666. 0.0,
  2667. 1.0,
  2668. 0.0,
  2669. 0.0,
  2670. 0.0,
  2671. 1.0
  2672. ],
  2673. "label": "Source"
  2674. }
  2675. ],
  2676. "methodType": 1,
  2677. "methodName": "ScriptCanvas_TransformFunctions_FromMatrix3x3",
  2678. "inputSlots": [
  2679. {
  2680. "m_id": "{24375F3D-D9F1-4B32-8876-0C288714ACC1}"
  2681. }
  2682. ],
  2683. "prettyClassName": "ScriptCanvas_TransformFunctions_FromMatrix3x3"
  2684. }
  2685. }
  2686. },
  2687. {
  2688. "Id": {
  2689. "id": 322260688875394
  2690. },
  2691. "Name": "SC-Node(ScriptCanvas_TransformFunctions_MultiplyByVector4)",
  2692. "Components": {
  2693. "Component_[7113799701862900158]": {
  2694. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2695. "Id": 7113799701862900158,
  2696. "Slots": [
  2697. {
  2698. "id": {
  2699. "m_id": "{81ED7692-2CEB-491A-83B3-70D2951BFDDC}"
  2700. },
  2701. "contracts": [
  2702. {
  2703. "$type": "SlotTypeContract"
  2704. }
  2705. ],
  2706. "slotName": "Source",
  2707. "Descriptor": {
  2708. "ConnectionType": 1,
  2709. "SlotType": 2
  2710. },
  2711. "DataType": 1
  2712. },
  2713. {
  2714. "id": {
  2715. "m_id": "{7A20F208-5143-4B2A-9D54-0C567B5EBA8D}"
  2716. },
  2717. "contracts": [
  2718. {
  2719. "$type": "SlotTypeContract"
  2720. }
  2721. ],
  2722. "slotName": "Multiplier",
  2723. "Descriptor": {
  2724. "ConnectionType": 1,
  2725. "SlotType": 2
  2726. },
  2727. "DataType": 1
  2728. },
  2729. {
  2730. "id": {
  2731. "m_id": "{D7B1AFCC-43EC-4924-89AA-C9A1E7EA36BB}"
  2732. },
  2733. "contracts": [
  2734. {
  2735. "$type": "SlotTypeContract"
  2736. }
  2737. ],
  2738. "slotName": "In",
  2739. "Descriptor": {
  2740. "ConnectionType": 1,
  2741. "SlotType": 1
  2742. }
  2743. },
  2744. {
  2745. "id": {
  2746. "m_id": "{C8C6DB96-B6E5-47E9-A80B-6A1CFF0FE20C}"
  2747. },
  2748. "contracts": [
  2749. {
  2750. "$type": "SlotTypeContract"
  2751. }
  2752. ],
  2753. "slotName": "Out",
  2754. "Descriptor": {
  2755. "ConnectionType": 2,
  2756. "SlotType": 1
  2757. }
  2758. },
  2759. {
  2760. "id": {
  2761. "m_id": "{9820E445-0630-4756-A723-211927482395}"
  2762. },
  2763. "contracts": [
  2764. {
  2765. "$type": "SlotTypeContract"
  2766. }
  2767. ],
  2768. "slotName": "Vector4",
  2769. "DisplayDataType": {
  2770. "m_type": 10
  2771. },
  2772. "Descriptor": {
  2773. "ConnectionType": 2,
  2774. "SlotType": 2
  2775. },
  2776. "DataType": 1
  2777. }
  2778. ],
  2779. "Datums": [
  2780. {
  2781. "isOverloadedStorage": false,
  2782. "scriptCanvasType": {
  2783. "m_type": 7
  2784. },
  2785. "isNullPointer": false,
  2786. "$type": "Transform",
  2787. "value": {
  2788. "Translation": [
  2789. 0.0,
  2790. 0.0,
  2791. 0.0
  2792. ],
  2793. "Rotation": [
  2794. 0.0,
  2795. 0.0,
  2796. 0.0,
  2797. 1.0
  2798. ],
  2799. "Scale": 1.0
  2800. },
  2801. "label": "Source"
  2802. },
  2803. {
  2804. "isOverloadedStorage": false,
  2805. "scriptCanvasType": {
  2806. "m_type": 10
  2807. },
  2808. "isNullPointer": false,
  2809. "$type": "Vector4",
  2810. "value": [
  2811. 0.0,
  2812. 0.0,
  2813. 0.0,
  2814. 0.0
  2815. ],
  2816. "label": "Multiplier"
  2817. }
  2818. ],
  2819. "methodType": 1,
  2820. "methodName": "ScriptCanvas_TransformFunctions_MultiplyByVector4",
  2821. "inputSlots": [
  2822. {
  2823. "m_id": "{81ED7692-2CEB-491A-83B3-70D2951BFDDC}"
  2824. },
  2825. {
  2826. "m_id": "{7A20F208-5143-4B2A-9D54-0C567B5EBA8D}"
  2827. }
  2828. ],
  2829. "prettyClassName": "ScriptCanvas_TransformFunctions_MultiplyByVector4"
  2830. }
  2831. }
  2832. },
  2833. {
  2834. "Id": {
  2835. "id": 314478208135042
  2836. },
  2837. "Name": "SC-Node(ScriptCanvas_TransformFunctions_FromRotationScaleAndTranslation)",
  2838. "Components": {
  2839. "Component_[9198589359079743544]": {
  2840. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2841. "Id": 9198589359079743544,
  2842. "Slots": [
  2843. {
  2844. "id": {
  2845. "m_id": "{726BC49F-2473-4F19-BBC1-4A0A39D65160}"
  2846. },
  2847. "contracts": [
  2848. {
  2849. "$type": "SlotTypeContract"
  2850. }
  2851. ],
  2852. "slotName": "Rotation",
  2853. "Descriptor": {
  2854. "ConnectionType": 1,
  2855. "SlotType": 2
  2856. },
  2857. "DataType": 1
  2858. },
  2859. {
  2860. "id": {
  2861. "m_id": "{622195E2-63E7-4E0B-B2A9-74D2FEAE9C0A}"
  2862. },
  2863. "contracts": [
  2864. {
  2865. "$type": "SlotTypeContract"
  2866. }
  2867. ],
  2868. "slotName": "Scale",
  2869. "Descriptor": {
  2870. "ConnectionType": 1,
  2871. "SlotType": 2
  2872. },
  2873. "DataType": 1
  2874. },
  2875. {
  2876. "id": {
  2877. "m_id": "{CB1A0DB9-1CB7-4230-B5B2-A436AC10911B}"
  2878. },
  2879. "contracts": [
  2880. {
  2881. "$type": "SlotTypeContract"
  2882. }
  2883. ],
  2884. "slotName": "Translation",
  2885. "Descriptor": {
  2886. "ConnectionType": 1,
  2887. "SlotType": 2
  2888. },
  2889. "DataType": 1
  2890. },
  2891. {
  2892. "id": {
  2893. "m_id": "{53C1FC12-0C01-462D-A704-C00C2BEF4A04}"
  2894. },
  2895. "contracts": [
  2896. {
  2897. "$type": "SlotTypeContract"
  2898. }
  2899. ],
  2900. "slotName": "In",
  2901. "Descriptor": {
  2902. "ConnectionType": 1,
  2903. "SlotType": 1
  2904. }
  2905. },
  2906. {
  2907. "id": {
  2908. "m_id": "{3FF982AE-AF12-4F73-A88A-4061F66F5FAB}"
  2909. },
  2910. "contracts": [
  2911. {
  2912. "$type": "SlotTypeContract"
  2913. }
  2914. ],
  2915. "slotName": "Out",
  2916. "Descriptor": {
  2917. "ConnectionType": 2,
  2918. "SlotType": 1
  2919. }
  2920. },
  2921. {
  2922. "id": {
  2923. "m_id": "{81206AFA-A2D5-478B-86CC-0BCC26406D09}"
  2924. },
  2925. "contracts": [
  2926. {
  2927. "$type": "SlotTypeContract"
  2928. }
  2929. ],
  2930. "slotName": "Transform",
  2931. "DisplayDataType": {
  2932. "m_type": 7
  2933. },
  2934. "Descriptor": {
  2935. "ConnectionType": 2,
  2936. "SlotType": 2
  2937. },
  2938. "DataType": 1
  2939. }
  2940. ],
  2941. "Datums": [
  2942. {
  2943. "isOverloadedStorage": false,
  2944. "scriptCanvasType": {
  2945. "m_type": 6
  2946. },
  2947. "isNullPointer": false,
  2948. "$type": "Quaternion",
  2949. "value": [
  2950. 0.0,
  2951. 0.0,
  2952. 0.0,
  2953. 1.0
  2954. ],
  2955. "label": "Rotation"
  2956. },
  2957. {
  2958. "isOverloadedStorage": false,
  2959. "scriptCanvasType": {
  2960. "m_type": 3
  2961. },
  2962. "isNullPointer": false,
  2963. "$type": "double",
  2964. "value": 0.0,
  2965. "label": "Scale"
  2966. },
  2967. {
  2968. "isOverloadedStorage": false,
  2969. "scriptCanvasType": {
  2970. "m_type": 8
  2971. },
  2972. "isNullPointer": false,
  2973. "$type": "Vector3",
  2974. "value": [
  2975. 0.0,
  2976. 0.0,
  2977. 0.0
  2978. ],
  2979. "label": "Translation"
  2980. }
  2981. ],
  2982. "methodType": 1,
  2983. "methodName": "ScriptCanvas_TransformFunctions_FromRotationScaleAndTranslation",
  2984. "inputSlots": [
  2985. {
  2986. "m_id": "{726BC49F-2473-4F19-BBC1-4A0A39D65160}"
  2987. },
  2988. {
  2989. "m_id": "{622195E2-63E7-4E0B-B2A9-74D2FEAE9C0A}"
  2990. },
  2991. {
  2992. "m_id": "{CB1A0DB9-1CB7-4230-B5B2-A436AC10911B}"
  2993. }
  2994. ],
  2995. "prettyClassName": "ScriptCanvas_TransformFunctions_FromRotationScaleAndTranslation"
  2996. }
  2997. }
  2998. },
  2999. {
  3000. "Id": {
  3001. "id": 323128272269186
  3002. },
  3003. "Name": "SC-Node(ScriptCanvas_TransformFunctions_Orthogonalize)",
  3004. "Components": {
  3005. "Component_[9332936929325237184]": {
  3006. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3007. "Id": 9332936929325237184,
  3008. "Slots": [
  3009. {
  3010. "id": {
  3011. "m_id": "{6B957E17-5E92-42CC-AFA1-2C6E83571BF4}"
  3012. },
  3013. "contracts": [
  3014. {
  3015. "$type": "SlotTypeContract"
  3016. }
  3017. ],
  3018. "slotName": "Source",
  3019. "Descriptor": {
  3020. "ConnectionType": 1,
  3021. "SlotType": 2
  3022. },
  3023. "DataType": 1
  3024. },
  3025. {
  3026. "id": {
  3027. "m_id": "{130703D9-EFB0-4197-A96D-10D906AD59E6}"
  3028. },
  3029. "contracts": [
  3030. {
  3031. "$type": "SlotTypeContract"
  3032. }
  3033. ],
  3034. "slotName": "In",
  3035. "Descriptor": {
  3036. "ConnectionType": 1,
  3037. "SlotType": 1
  3038. }
  3039. },
  3040. {
  3041. "id": {
  3042. "m_id": "{64B301FB-78DB-4A54-9C73-2A6013D5AF87}"
  3043. },
  3044. "contracts": [
  3045. {
  3046. "$type": "SlotTypeContract"
  3047. }
  3048. ],
  3049. "slotName": "Out",
  3050. "Descriptor": {
  3051. "ConnectionType": 2,
  3052. "SlotType": 1
  3053. }
  3054. },
  3055. {
  3056. "id": {
  3057. "m_id": "{FBA67F47-A62D-4F72-AB47-61D6C9255EE7}"
  3058. },
  3059. "contracts": [
  3060. {
  3061. "$type": "SlotTypeContract"
  3062. }
  3063. ],
  3064. "slotName": "Transform",
  3065. "DisplayDataType": {
  3066. "m_type": 7
  3067. },
  3068. "Descriptor": {
  3069. "ConnectionType": 2,
  3070. "SlotType": 2
  3071. },
  3072. "DataType": 1
  3073. }
  3074. ],
  3075. "Datums": [
  3076. {
  3077. "isOverloadedStorage": false,
  3078. "scriptCanvasType": {
  3079. "m_type": 7
  3080. },
  3081. "isNullPointer": false,
  3082. "$type": "Transform",
  3083. "value": {
  3084. "Translation": [
  3085. 0.0,
  3086. 0.0,
  3087. 0.0
  3088. ],
  3089. "Rotation": [
  3090. 0.0,
  3091. 0.0,
  3092. 0.0,
  3093. 1.0
  3094. ],
  3095. "Scale": 1.0
  3096. },
  3097. "label": "Source"
  3098. }
  3099. ],
  3100. "methodType": 1,
  3101. "methodName": "ScriptCanvas_TransformFunctions_Orthogonalize",
  3102. "inputSlots": [
  3103. {
  3104. "m_id": "{6B957E17-5E92-42CC-AFA1-2C6E83571BF4}"
  3105. }
  3106. ],
  3107. "prettyClassName": "ScriptCanvas_TransformFunctions_Orthogonalize"
  3108. }
  3109. }
  3110. },
  3111. {
  3112. "Id": {
  3113. "id": 311884047888258
  3114. },
  3115. "Name": "SC-Node(ScriptCanvas_TransformFunctions_FromMatrix3x3AndTranslation)",
  3116. "Components": {
  3117. "Component_[9350711950951671236]": {
  3118. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3119. "Id": 9350711950951671236,
  3120. "Slots": [
  3121. {
  3122. "id": {
  3123. "m_id": "{F4507410-977A-4AC8-AA57-DBDAE5610227}"
  3124. },
  3125. "contracts": [
  3126. {
  3127. "$type": "SlotTypeContract"
  3128. }
  3129. ],
  3130. "slotName": "Matrix",
  3131. "Descriptor": {
  3132. "ConnectionType": 1,
  3133. "SlotType": 2
  3134. },
  3135. "DataType": 1
  3136. },
  3137. {
  3138. "id": {
  3139. "m_id": "{68BD9B32-DC3D-4B62-A3BC-55E005212758}"
  3140. },
  3141. "contracts": [
  3142. {
  3143. "$type": "SlotTypeContract"
  3144. }
  3145. ],
  3146. "slotName": "Translation",
  3147. "Descriptor": {
  3148. "ConnectionType": 1,
  3149. "SlotType": 2
  3150. },
  3151. "DataType": 1
  3152. },
  3153. {
  3154. "id": {
  3155. "m_id": "{932B4A04-B098-4910-B4E5-5D20506802A5}"
  3156. },
  3157. "contracts": [
  3158. {
  3159. "$type": "SlotTypeContract"
  3160. }
  3161. ],
  3162. "slotName": "In",
  3163. "Descriptor": {
  3164. "ConnectionType": 1,
  3165. "SlotType": 1
  3166. }
  3167. },
  3168. {
  3169. "id": {
  3170. "m_id": "{CC9079BB-1AA8-4948-88ED-475E0B27751C}"
  3171. },
  3172. "contracts": [
  3173. {
  3174. "$type": "SlotTypeContract"
  3175. }
  3176. ],
  3177. "slotName": "Out",
  3178. "Descriptor": {
  3179. "ConnectionType": 2,
  3180. "SlotType": 1
  3181. }
  3182. },
  3183. {
  3184. "id": {
  3185. "m_id": "{444E1041-532D-4B1E-A0CC-5D049F6BDFBB}"
  3186. },
  3187. "contracts": [
  3188. {
  3189. "$type": "SlotTypeContract"
  3190. }
  3191. ],
  3192. "slotName": "Transform",
  3193. "DisplayDataType": {
  3194. "m_type": 7
  3195. },
  3196. "Descriptor": {
  3197. "ConnectionType": 2,
  3198. "SlotType": 2
  3199. },
  3200. "DataType": 1
  3201. }
  3202. ],
  3203. "Datums": [
  3204. {
  3205. "isOverloadedStorage": false,
  3206. "scriptCanvasType": {
  3207. "m_type": 14
  3208. },
  3209. "isNullPointer": false,
  3210. "$type": "Matrix3x3",
  3211. "value": [
  3212. 1.0,
  3213. 0.0,
  3214. 0.0,
  3215. 0.0,
  3216. 1.0,
  3217. 0.0,
  3218. 0.0,
  3219. 0.0,
  3220. 1.0
  3221. ],
  3222. "label": "Matrix"
  3223. },
  3224. {
  3225. "isOverloadedStorage": false,
  3226. "scriptCanvasType": {
  3227. "m_type": 8
  3228. },
  3229. "isNullPointer": false,
  3230. "$type": "Vector3",
  3231. "value": [
  3232. 0.0,
  3233. 0.0,
  3234. 0.0
  3235. ],
  3236. "label": "Translation"
  3237. }
  3238. ],
  3239. "methodType": 1,
  3240. "methodName": "ScriptCanvas_TransformFunctions_FromMatrix3x3AndTranslation",
  3241. "inputSlots": [
  3242. {
  3243. "m_id": "{F4507410-977A-4AC8-AA57-DBDAE5610227}"
  3244. },
  3245. {
  3246. "m_id": "{68BD9B32-DC3D-4B62-A3BC-55E005212758}"
  3247. }
  3248. ],
  3249. "prettyClassName": "ScriptCanvas_TransformFunctions_FromMatrix3x3AndTranslation"
  3250. }
  3251. }
  3252. },
  3253. {
  3254. "Id": {
  3255. "id": 325121137094530
  3256. },
  3257. "Name": "SC-Node(ScriptCanvas_TransformFunctions_ToScale)",
  3258. "Components": {
  3259. "Component_[9605870518995741730]": {
  3260. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  3261. "Id": 9605870518995741730,
  3262. "Slots": [
  3263. {
  3264. "id": {
  3265. "m_id": "{98B0E0DB-EEF8-4203-AF70-3F2AAFCFA282}"
  3266. },
  3267. "contracts": [
  3268. {
  3269. "$type": "SlotTypeContract"
  3270. }
  3271. ],
  3272. "slotName": "Source",
  3273. "Descriptor": {
  3274. "ConnectionType": 1,
  3275. "SlotType": 2
  3276. },
  3277. "DataType": 1
  3278. },
  3279. {
  3280. "id": {
  3281. "m_id": "{F79BB22C-FE96-45C0-BB9A-89A4A4D1C691}"
  3282. },
  3283. "contracts": [
  3284. {
  3285. "$type": "SlotTypeContract"
  3286. }
  3287. ],
  3288. "slotName": "In",
  3289. "Descriptor": {
  3290. "ConnectionType": 1,
  3291. "SlotType": 1
  3292. }
  3293. },
  3294. {
  3295. "id": {
  3296. "m_id": "{DD18891C-F99D-4FD7-8B46-2E07B04C414C}"
  3297. },
  3298. "contracts": [
  3299. {
  3300. "$type": "SlotTypeContract"
  3301. }
  3302. ],
  3303. "slotName": "Out",
  3304. "Descriptor": {
  3305. "ConnectionType": 2,
  3306. "SlotType": 1
  3307. }
  3308. },
  3309. {
  3310. "id": {
  3311. "m_id": "{AA0E8294-1F7C-425C-A29A-1AE7418B5FF8}"
  3312. },
  3313. "contracts": [
  3314. {
  3315. "$type": "SlotTypeContract"
  3316. }
  3317. ],
  3318. "slotName": "Number",
  3319. "DisplayDataType": {
  3320. "m_type": 3
  3321. },
  3322. "Descriptor": {
  3323. "ConnectionType": 2,
  3324. "SlotType": 2
  3325. },
  3326. "DataType": 1
  3327. }
  3328. ],
  3329. "Datums": [
  3330. {
  3331. "isOverloadedStorage": false,
  3332. "scriptCanvasType": {
  3333. "m_type": 7
  3334. },
  3335. "isNullPointer": false,
  3336. "$type": "Transform",
  3337. "value": {
  3338. "Translation": [
  3339. 0.0,
  3340. 0.0,
  3341. 0.0
  3342. ],
  3343. "Rotation": [
  3344. 0.0,
  3345. 0.0,
  3346. 0.0,
  3347. 1.0
  3348. ],
  3349. "Scale": 1.0
  3350. },
  3351. "label": "Source"
  3352. }
  3353. ],
  3354. "methodType": 1,
  3355. "methodName": "ScriptCanvas_TransformFunctions_ToScale",
  3356. "inputSlots": [
  3357. {
  3358. "m_id": "{98B0E0DB-EEF8-4203-AF70-3F2AAFCFA282}"
  3359. }
  3360. ],
  3361. "prettyClassName": "ScriptCanvas_TransformFunctions_ToScale"
  3362. }
  3363. }
  3364. }
  3365. ],
  3366. "m_connections": [
  3367. {
  3368. "Id": {
  3369. "id": 311287047434114
  3370. },
  3371. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Ordered Sequencer: In)",
  3372. "Components": {
  3373. "Component_[2397876587611376540]": {
  3374. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3375. "Id": 2397876587611376540,
  3376. "sourceEndpoint": {
  3377. "nodeId": {
  3378. "id": 310329269727106
  3379. },
  3380. "slotId": {
  3381. "m_id": "{3E79CAD5-C5DE-4409-B804-8083536F4ACF}"
  3382. }
  3383. },
  3384. "targetEndpoint": {
  3385. "nodeId": {
  3386. "id": 310621327503234
  3387. },
  3388. "slotId": {
  3389. "m_id": "{6652C814-A2C3-4023-A24F-EBA4A1686577}"
  3390. }
  3391. }
  3392. }
  3393. }
  3394. },
  3395. {
  3396. "Id": {
  3397. "id": 329012377464706
  3398. },
  3399. "Name": "srcEndpoint=(Ordered Sequencer: Out 0), destEndpoint=(ScriptCanvas_TransformFunctions_FromRotation: In)",
  3400. "Components": {
  3401. "Component_[7635770326183614070]": {
  3402. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3403. "Id": 7635770326183614070,
  3404. "sourceEndpoint": {
  3405. "nodeId": {
  3406. "id": 310621327503234
  3407. },
  3408. "slotId": {
  3409. "m_id": "{D7B1AD87-8950-42D0-BBE0-707025375F6A}"
  3410. }
  3411. },
  3412. "targetEndpoint": {
  3413. "nodeId": {
  3414. "id": 312682911805314
  3415. },
  3416. "slotId": {
  3417. "m_id": "{37A3632A-4A53-4BE0-BAE1-3247A684307D}"
  3418. }
  3419. }
  3420. }
  3421. }
  3422. },
  3423. {
  3424. "Id": {
  3425. "id": 329785471577986
  3426. },
  3427. "Name": "srcEndpoint=(Ordered Sequencer: Out 1), destEndpoint=(ScriptCanvas_TransformFunctions_FromMatrix3x3AndTranslation: In)",
  3428. "Components": {
  3429. "Component_[4073454735158007631]": {
  3430. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3431. "Id": 4073454735158007631,
  3432. "sourceEndpoint": {
  3433. "nodeId": {
  3434. "id": 310621327503234
  3435. },
  3436. "slotId": {
  3437. "m_id": "{A38CF1FF-5583-4B2B-AFA1-4B60F0E02A56}"
  3438. }
  3439. },
  3440. "targetEndpoint": {
  3441. "nodeId": {
  3442. "id": 311884047888258
  3443. },
  3444. "slotId": {
  3445. "m_id": "{932B4A04-B098-4910-B4E5-5D20506802A5}"
  3446. }
  3447. }
  3448. }
  3449. }
  3450. },
  3451. {
  3452. "Id": {
  3453. "id": 330313752555394
  3454. },
  3455. "Name": "srcEndpoint=(Ordered Sequencer: Out 2), destEndpoint=(ScriptCanvas_TransformFunctions_FromRotationAndTranslation: In)",
  3456. "Components": {
  3457. "Component_[10063633099853825529]": {
  3458. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3459. "Id": 10063633099853825529,
  3460. "sourceEndpoint": {
  3461. "nodeId": {
  3462. "id": 310621327503234
  3463. },
  3464. "slotId": {
  3465. "m_id": "{8AD5B873-1CDA-49DE-A0A9-F9CDE8E301F3}"
  3466. }
  3467. },
  3468. "targetEndpoint": {
  3469. "nodeId": {
  3470. "id": 313404466311042
  3471. },
  3472. "slotId": {
  3473. "m_id": "{1F7F31BB-2AB8-4ADF-B232-E8E96AC3ACA1}"
  3474. }
  3475. }
  3476. }
  3477. }
  3478. },
  3479. {
  3480. "Id": {
  3481. "id": 330816263729026
  3482. },
  3483. "Name": "srcEndpoint=(Ordered Sequencer: Out 3), destEndpoint=(ScriptCanvas_TransformFunctions_FromTranslation: In)",
  3484. "Components": {
  3485. "Component_[5405120490519522176]": {
  3486. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3487. "Id": 5405120490519522176,
  3488. "sourceEndpoint": {
  3489. "nodeId": {
  3490. "id": 310621327503234
  3491. },
  3492. "slotId": {
  3493. "m_id": "{53D3B348-4F82-4E9C-81E9-42E7167AE237}"
  3494. }
  3495. },
  3496. "targetEndpoint": {
  3497. "nodeId": {
  3498. "id": 316213374922626
  3499. },
  3500. "slotId": {
  3501. "m_id": "{A6AD4276-0165-4194-8492-A266A50C78C7}"
  3502. }
  3503. }
  3504. }
  3505. }
  3506. },
  3507. {
  3508. "Id": {
  3509. "id": 331361724575618
  3510. },
  3511. "Name": "srcEndpoint=(Ordered Sequencer: Out 4), destEndpoint=(ScriptCanvas_TransformFunctions_FromRotationScaleAndTranslation: In)",
  3512. "Components": {
  3513. "Component_[2530363494414932156]": {
  3514. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3515. "Id": 2530363494414932156,
  3516. "sourceEndpoint": {
  3517. "nodeId": {
  3518. "id": 310621327503234
  3519. },
  3520. "slotId": {
  3521. "m_id": "{8ADDF8A0-06BA-43F1-896B-D8A6CD2C98DA}"
  3522. }
  3523. },
  3524. "targetEndpoint": {
  3525. "nodeId": {
  3526. "id": 314478208135042
  3527. },
  3528. "slotId": {
  3529. "m_id": "{53C1FC12-0C01-462D-A704-C00C2BEF4A04}"
  3530. }
  3531. }
  3532. }
  3533. }
  3534. },
  3535. {
  3536. "Id": {
  3537. "id": 331795516272514
  3538. },
  3539. "Name": "srcEndpoint=(Ordered Sequencer: Out 5), destEndpoint=(ScriptCanvas_TransformFunctions_GetTranslation: In)",
  3540. "Components": {
  3541. "Component_[13209944266243168013]": {
  3542. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3543. "Id": 13209944266243168013,
  3544. "sourceEndpoint": {
  3545. "nodeId": {
  3546. "id": 310621327503234
  3547. },
  3548. "slotId": {
  3549. "m_id": "{FD1D881D-8E35-470E-A825-69DC4EE569BC}"
  3550. }
  3551. },
  3552. "targetEndpoint": {
  3553. "nodeId": {
  3554. "id": 318120340402050
  3555. },
  3556. "slotId": {
  3557. "m_id": "{CB0AEB3F-A95E-4FB4-B0AB-2DF55FE94816}"
  3558. }
  3559. }
  3560. }
  3561. }
  3562. },
  3563. {
  3564. "Id": {
  3565. "id": 332392516726658
  3566. },
  3567. "Name": "srcEndpoint=(Ordered Sequencer: Out 6), destEndpoint=(ScriptCanvas_TransformFunctions_GetForward: In)",
  3568. "Components": {
  3569. "Component_[4030004053979229217]": {
  3570. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3571. "Id": 4030004053979229217,
  3572. "sourceEndpoint": {
  3573. "nodeId": {
  3574. "id": 310621327503234
  3575. },
  3576. "slotId": {
  3577. "m_id": "{A845D5C1-FAE2-4AE6-A958-9FA0C7EEC43C}"
  3578. }
  3579. },
  3580. "targetEndpoint": {
  3581. "nodeId": {
  3582. "id": 316934929428354
  3583. },
  3584. "slotId": {
  3585. "m_id": "{F2A1CE91-05D2-4F4F-896F-5347369589F8}"
  3586. }
  3587. }
  3588. }
  3589. }
  3590. },
  3591. {
  3592. "Id": {
  3593. "id": 332800538619778
  3594. },
  3595. "Name": "srcEndpoint=(Ordered Sequencer: Out 7), destEndpoint=(ScriptCanvas_TransformFunctions_GetRight: In)",
  3596. "Components": {
  3597. "Component_[1169914583779412361]": {
  3598. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3599. "Id": 1169914583779412361,
  3600. "sourceEndpoint": {
  3601. "nodeId": {
  3602. "id": 310621327503234
  3603. },
  3604. "slotId": {
  3605. "m_id": "{7CD47393-8F2E-4E74-91B8-F4FEEC912BF2}"
  3606. }
  3607. },
  3608. "targetEndpoint": {
  3609. "nodeId": {
  3610. "id": 317527634915202
  3611. },
  3612. "slotId": {
  3613. "m_id": "{EEDEC50C-5FCE-42B3-89DD-04D09A4DB39B}"
  3614. }
  3615. }
  3616. }
  3617. }
  3618. },
  3619. {
  3620. "Id": {
  3621. "id": 333320229662594
  3622. },
  3623. "Name": "srcEndpoint=(Ordered Sequencer: Out 8), destEndpoint=(ScriptCanvas_TransformFunctions_IsFinite: In)",
  3624. "Components": {
  3625. "Component_[3088828350911495859]": {
  3626. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3627. "Id": 3088828350911495859,
  3628. "sourceEndpoint": {
  3629. "nodeId": {
  3630. "id": 310621327503234
  3631. },
  3632. "slotId": {
  3633. "m_id": "{A4709D89-B390-4A9F-AC55-332ECAAA84B4}"
  3634. }
  3635. },
  3636. "targetEndpoint": {
  3637. "nodeId": {
  3638. "id": 319829737385858
  3639. },
  3640. "slotId": {
  3641. "m_id": "{B5E65132-F0B1-4370-863C-19529FF35F17}"
  3642. }
  3643. }
  3644. }
  3645. }
  3646. },
  3647. {
  3648. "Id": {
  3649. "id": 333719661621122
  3650. },
  3651. "Name": "srcEndpoint=(Ordered Sequencer: Out 9), destEndpoint=(ScriptCanvas_TransformFunctions_GetUp: In)",
  3652. "Components": {
  3653. "Component_[7566569131217782557]": {
  3654. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3655. "Id": 7566569131217782557,
  3656. "sourceEndpoint": {
  3657. "nodeId": {
  3658. "id": 310621327503234
  3659. },
  3660. "slotId": {
  3661. "m_id": "{D8D80BC5-EF6E-4CD0-B907-B1212AD49238}"
  3662. }
  3663. },
  3664. "targetEndpoint": {
  3665. "nodeId": {
  3666. "id": 318567017000834
  3667. },
  3668. "slotId": {
  3669. "m_id": "{8A86DDF1-5703-40F0-84AF-4D0E4E433695}"
  3670. }
  3671. }
  3672. }
  3673. }
  3674. },
  3675. {
  3676. "Id": {
  3677. "id": 334170633187202
  3678. },
  3679. "Name": "srcEndpoint=(Ordered Sequencer: Out 10), destEndpoint=(ScriptCanvas_TransformFunctions_IsClose: In)",
  3680. "Components": {
  3681. "Component_[5271727808503284116]": {
  3682. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3683. "Id": 5271727808503284116,
  3684. "sourceEndpoint": {
  3685. "nodeId": {
  3686. "id": 310621327503234
  3687. },
  3688. "slotId": {
  3689. "m_id": "{38EF286D-A096-4E73-8BA7-218EFFB43C88}"
  3690. }
  3691. },
  3692. "targetEndpoint": {
  3693. "nodeId": {
  3694. "id": 319159722487682
  3695. },
  3696. "slotId": {
  3697. "m_id": "{68EBB920-9A13-4C22-B307-0B3104CE26C0}"
  3698. }
  3699. }
  3700. }
  3701. }
  3702. },
  3703. {
  3704. "Id": {
  3705. "id": 334578655080322
  3706. },
  3707. "Name": "srcEndpoint=(Ordered Sequencer: Out 11), destEndpoint=(ScriptCanvas_TransformFunctions_IsOrthogonal: In)",
  3708. "Components": {
  3709. "Component_[11765594841982819929]": {
  3710. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3711. "Id": 11765594841982819929,
  3712. "sourceEndpoint": {
  3713. "nodeId": {
  3714. "id": 310621327503234
  3715. },
  3716. "slotId": {
  3717. "m_id": "{B724AF04-93F6-41EE-857F-816709602120}"
  3718. }
  3719. },
  3720. "targetEndpoint": {
  3721. "nodeId": {
  3722. "id": 320276413984642
  3723. },
  3724. "slotId": {
  3725. "m_id": "{7ECF89EB-7C24-46A4-9B2C-392BB0D6F5C2}"
  3726. }
  3727. }
  3728. }
  3729. }
  3730. },
  3731. {
  3732. "Id": {
  3733. "id": 335029626646402
  3734. },
  3735. "Name": "srcEndpoint=(Ordered Sequencer: Out 12), destEndpoint=(ScriptCanvas_TransformFunctions_MultiplyByUniformScale: In)",
  3736. "Components": {
  3737. "Component_[16305169425847579308]": {
  3738. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3739. "Id": 16305169425847579308,
  3740. "sourceEndpoint": {
  3741. "nodeId": {
  3742. "id": 310621327503234
  3743. },
  3744. "slotId": {
  3745. "m_id": "{21A68E8F-B837-4A81-84E4-1545B1AAD9C0}"
  3746. }
  3747. },
  3748. "targetEndpoint": {
  3749. "nodeId": {
  3750. "id": 320869119471490
  3751. },
  3752. "slotId": {
  3753. "m_id": "{319C52B7-DC8F-4948-BB76-58DB526FDAF0}"
  3754. }
  3755. }
  3756. }
  3757. }
  3758. },
  3759. {
  3760. "Id": {
  3761. "id": 335721116381058
  3762. },
  3763. "Name": "srcEndpoint=(Ordered Sequencer: Out 13), destEndpoint=(ScriptCanvas_TransformFunctions_MultiplyByVector3: In)",
  3764. "Components": {
  3765. "Component_[9420592530047822999]": {
  3766. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3767. "Id": 9420592530047822999,
  3768. "sourceEndpoint": {
  3769. "nodeId": {
  3770. "id": 310621327503234
  3771. },
  3772. "slotId": {
  3773. "m_id": "{0C71338E-3B23-48E7-99F5-69487F9106A2}"
  3774. }
  3775. },
  3776. "targetEndpoint": {
  3777. "nodeId": {
  3778. "id": 321461824958338
  3779. },
  3780. "slotId": {
  3781. "m_id": "{6B05F244-288D-49D4-A5DC-1DE54B085635}"
  3782. }
  3783. }
  3784. }
  3785. }
  3786. },
  3787. {
  3788. "Id": {
  3789. "id": 336129138274178
  3790. },
  3791. "Name": "srcEndpoint=(Ordered Sequencer: Out 14), destEndpoint=(ScriptCanvas_TransformFunctions_RotationXDegrees: In)",
  3792. "Components": {
  3793. "Component_[11772582821350974131]": {
  3794. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3795. "Id": 11772582821350974131,
  3796. "sourceEndpoint": {
  3797. "nodeId": {
  3798. "id": 310621327503234
  3799. },
  3800. "slotId": {
  3801. "m_id": "{D5FE3BCC-0638-44A2-AAE2-FA605F8C6298}"
  3802. }
  3803. },
  3804. "targetEndpoint": {
  3805. "nodeId": {
  3806. "id": 323574948867970
  3807. },
  3808. "slotId": {
  3809. "m_id": "{4B6255B7-AE96-42E8-9F55-7FA691172AF4}"
  3810. }
  3811. }
  3812. }
  3813. }
  3814. },
  3815. {
  3816. "Id": {
  3817. "id": 336640239382402
  3818. },
  3819. "Name": "srcEndpoint=(Ordered Sequencer: Out 15), destEndpoint=(ScriptCanvas_TransformFunctions_MultiplyByVector4: In)",
  3820. "Components": {
  3821. "Component_[15304274998423270562]": {
  3822. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3823. "Id": 15304274998423270562,
  3824. "sourceEndpoint": {
  3825. "nodeId": {
  3826. "id": 310621327503234
  3827. },
  3828. "slotId": {
  3829. "m_id": "{670DBFDA-C8A9-424D-9007-C210D055616A}"
  3830. }
  3831. },
  3832. "targetEndpoint": {
  3833. "nodeId": {
  3834. "id": 322260688875394
  3835. },
  3836. "slotId": {
  3837. "m_id": "{D7B1AFCC-43EC-4924-89AA-C9A1E7EA36BB}"
  3838. }
  3839. }
  3840. }
  3841. }
  3842. },
  3843. {
  3844. "Id": {
  3845. "id": 337091210948482
  3846. },
  3847. "Name": "srcEndpoint=(Ordered Sequencer: Out 16), destEndpoint=(ScriptCanvas_TransformFunctions_RotationYDegrees: In)",
  3848. "Components": {
  3849. "Component_[12268564787304462280]": {
  3850. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3851. "Id": 12268564787304462280,
  3852. "sourceEndpoint": {
  3853. "nodeId": {
  3854. "id": 310621327503234
  3855. },
  3856. "slotId": {
  3857. "m_id": "{99061E47-A65E-4F91-9833-334B18DF9E2C}"
  3858. }
  3859. },
  3860. "targetEndpoint": {
  3861. "nodeId": {
  3862. "id": 324090344943490
  3863. },
  3864. "slotId": {
  3865. "m_id": "{2DA80CE3-9304-4A7A-9ABE-27D03FB02E0D}"
  3866. }
  3867. }
  3868. }
  3869. }
  3870. },
  3871. {
  3872. "Id": {
  3873. "id": 337525002645378
  3874. },
  3875. "Name": "srcEndpoint=(Ordered Sequencer: Out 17), destEndpoint=(ScriptCanvas_TransformFunctions_FromMatrix3x3: In)",
  3876. "Components": {
  3877. "Component_[1009581932326453504]": {
  3878. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3879. "Id": 1009581932326453504,
  3880. "sourceEndpoint": {
  3881. "nodeId": {
  3882. "id": 310621327503234
  3883. },
  3884. "slotId": {
  3885. "m_id": "{515F1DFE-C807-428C-A361-57C4CE53074D}"
  3886. }
  3887. },
  3888. "targetEndpoint": {
  3889. "nodeId": {
  3890. "id": 311437371289474
  3891. },
  3892. "slotId": {
  3893. "m_id": "{FF747CF6-C5EC-4DF0-8AF9-043465CE8A20}"
  3894. }
  3895. }
  3896. }
  3897. }
  3898. },
  3899. {
  3900. "Id": {
  3901. "id": 337933024538498
  3902. },
  3903. "Name": "srcEndpoint=(Ordered Sequencer: Out 18), destEndpoint=(ScriptCanvas_TransformFunctions_FromScale: In)",
  3904. "Components": {
  3905. "Component_[16420770301388731613]": {
  3906. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3907. "Id": 16420770301388731613,
  3908. "sourceEndpoint": {
  3909. "nodeId": {
  3910. "id": 310621327503234
  3911. },
  3912. "slotId": {
  3913. "m_id": "{7DC373E4-750B-4393-B828-6B146011F770}"
  3914. }
  3915. },
  3916. "targetEndpoint": {
  3917. "nodeId": {
  3918. "id": 315697978847106
  3919. },
  3920. "slotId": {
  3921. "m_id": "{91B2EAF4-22FB-4C46-B9D9-5E86B4A6EDC2}"
  3922. }
  3923. }
  3924. }
  3925. }
  3926. },
  3927. {
  3928. "Id": {
  3929. "id": 338452715581314
  3930. },
  3931. "Name": "srcEndpoint=(Ordered Sequencer: Out 19), destEndpoint=(ScriptCanvas_TransformFunctions_RotationZDegrees: In)",
  3932. "Components": {
  3933. "Component_[16270375327491174727]": {
  3934. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3935. "Id": 16270375327491174727,
  3936. "sourceEndpoint": {
  3937. "nodeId": {
  3938. "id": 310621327503234
  3939. },
  3940. "slotId": {
  3941. "m_id": "{3D6B6166-A91A-4E89-B8B7-99369DF2C5EF}"
  3942. }
  3943. },
  3944. "targetEndpoint": {
  3945. "nodeId": {
  3946. "id": 324605741019010
  3947. },
  3948. "slotId": {
  3949. "m_id": "{3ABC06BB-ACD9-4E4F-B812-536B5FC1787B}"
  3950. }
  3951. }
  3952. }
  3953. }
  3954. },
  3955. {
  3956. "Id": {
  3957. "id": 338890802245506
  3958. },
  3959. "Name": "srcEndpoint=(Ordered Sequencer: Out 20), destEndpoint=(ScriptCanvas_TransformFunctions_ToScale: In)",
  3960. "Components": {
  3961. "Component_[9492149672745399895]": {
  3962. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3963. "Id": 9492149672745399895,
  3964. "sourceEndpoint": {
  3965. "nodeId": {
  3966. "id": 310621327503234
  3967. },
  3968. "slotId": {
  3969. "m_id": "{0EE6E9D6-7DC8-4A5C-AFCA-3AA6B90A9990}"
  3970. }
  3971. },
  3972. "targetEndpoint": {
  3973. "nodeId": {
  3974. "id": 325121137094530
  3975. },
  3976. "slotId": {
  3977. "m_id": "{F79BB22C-FE96-45C0-BB9A-89A4A4D1C691}"
  3978. }
  3979. }
  3980. }
  3981. }
  3982. },
  3983. {
  3984. "Id": {
  3985. "id": 339921594396546
  3986. },
  3987. "Name": "srcEndpoint=(Ordered Sequencer: Out 21), destEndpoint=(Mark Complete: In)",
  3988. "Components": {
  3989. "Component_[14135088418168066335]": {
  3990. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3991. "Id": 14135088418168066335,
  3992. "sourceEndpoint": {
  3993. "nodeId": {
  3994. "id": 310621327503234
  3995. },
  3996. "slotId": {
  3997. "m_id": "{213438E4-23F2-4CC6-98D1-3F1D93B95703}"
  3998. }
  3999. },
  4000. "targetEndpoint": {
  4001. "nodeId": {
  4002. "id": 338998176427906
  4003. },
  4004. "slotId": {
  4005. "m_id": "{1978E74E-BD92-4D47-9596-7466CFAEC9A9}"
  4006. }
  4007. }
  4008. }
  4009. }
  4010. }
  4011. ]
  4012. },
  4013. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  4014. "versionData": {
  4015. "_grammarVersion": 1,
  4016. "_runtimeVersion": 1,
  4017. "_fileVersion": 1
  4018. },
  4019. "GraphCanvasData": [
  4020. {
  4021. "Key": {
  4022. "id": 63308520664962
  4023. },
  4024. "Value": {
  4025. "ComponentData": {
  4026. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  4027. "$type": "SceneComponentSaveData",
  4028. "ViewParams": {
  4029. "Scale": 0.8061120449968567,
  4030. "AnchorX": -193.521484375,
  4031. "AnchorY": 265.4717712402344
  4032. }
  4033. }
  4034. }
  4035. }
  4036. },
  4037. {
  4038. "Key": {
  4039. "id": 310329269727106
  4040. },
  4041. "Value": {
  4042. "ComponentData": {
  4043. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4044. "$type": "NodeSaveData"
  4045. },
  4046. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4047. "$type": "GeneralNodeTitleComponentSaveData",
  4048. "PaletteOverride": "TimeNodeTitlePalette"
  4049. },
  4050. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4051. "$type": "GeometrySaveData",
  4052. "Position": [
  4053. -140.0,
  4054. -2440.0
  4055. ]
  4056. },
  4057. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4058. "$type": "StylingComponentSaveData"
  4059. },
  4060. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4061. "$type": "PersistentIdComponentSaveData",
  4062. "PersistentId": "{F97CFCA5-C6BE-4924-9443-9DA9E75C91E3}"
  4063. }
  4064. }
  4065. }
  4066. },
  4067. {
  4068. "Key": {
  4069. "id": 310621327503234
  4070. },
  4071. "Value": {
  4072. "ComponentData": {
  4073. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4074. "$type": "NodeSaveData"
  4075. },
  4076. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4077. "$type": "GeneralNodeTitleComponentSaveData",
  4078. "PaletteOverride": "LogicNodeTitlePalette"
  4079. },
  4080. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4081. "$type": "GeometrySaveData",
  4082. "Position": [
  4083. -60.0,
  4084. 140.0
  4085. ]
  4086. },
  4087. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4088. "$type": "StylingComponentSaveData"
  4089. },
  4090. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4091. "$type": "PersistentIdComponentSaveData",
  4092. "PersistentId": "{72A6C82B-AD4E-4A8C-A036-A3E9127CD880}"
  4093. }
  4094. }
  4095. }
  4096. },
  4097. {
  4098. "Key": {
  4099. "id": 311437371289474
  4100. },
  4101. "Value": {
  4102. "ComponentData": {
  4103. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4104. "$type": "NodeSaveData"
  4105. },
  4106. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4107. "$type": "GeneralNodeTitleComponentSaveData",
  4108. "PaletteOverride": "MethodNodeTitlePalette"
  4109. },
  4110. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4111. "$type": "GeometrySaveData",
  4112. "Position": [
  4113. 640.0,
  4114. 600.0
  4115. ]
  4116. },
  4117. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4118. "$type": "StylingComponentSaveData",
  4119. "SubStyle": ".method"
  4120. },
  4121. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4122. "$type": "PersistentIdComponentSaveData",
  4123. "PersistentId": "{01C12CF5-3D68-4259-8037-84E0640F24EE}"
  4124. }
  4125. }
  4126. }
  4127. },
  4128. {
  4129. "Key": {
  4130. "id": 311884047888258
  4131. },
  4132. "Value": {
  4133. "ComponentData": {
  4134. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4135. "$type": "NodeSaveData"
  4136. },
  4137. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4138. "$type": "GeneralNodeTitleComponentSaveData",
  4139. "PaletteOverride": "MethodNodeTitlePalette"
  4140. },
  4141. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4142. "$type": "GeometrySaveData",
  4143. "Position": [
  4144. 640.0,
  4145. -2600.0
  4146. ]
  4147. },
  4148. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4149. "$type": "StylingComponentSaveData",
  4150. "SubStyle": ".method"
  4151. },
  4152. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4153. "$type": "PersistentIdComponentSaveData",
  4154. "PersistentId": "{47672633-F35C-416E-9121-DE23AF3D8CF3}"
  4155. }
  4156. }
  4157. }
  4158. },
  4159. {
  4160. "Key": {
  4161. "id": 312682911805314
  4162. },
  4163. "Value": {
  4164. "ComponentData": {
  4165. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4166. "$type": "NodeSaveData"
  4167. },
  4168. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4169. "$type": "GeneralNodeTitleComponentSaveData",
  4170. "PaletteOverride": "MethodNodeTitlePalette"
  4171. },
  4172. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4173. "$type": "GeometrySaveData",
  4174. "Position": [
  4175. 640.0,
  4176. -2760.0
  4177. ]
  4178. },
  4179. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4180. "$type": "StylingComponentSaveData",
  4181. "SubStyle": ".method"
  4182. },
  4183. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4184. "$type": "PersistentIdComponentSaveData",
  4185. "PersistentId": "{D37C7315-8D78-4B56-B46B-30E5F2F45E9E}"
  4186. }
  4187. }
  4188. }
  4189. },
  4190. {
  4191. "Key": {
  4192. "id": 313404466311042
  4193. },
  4194. "Value": {
  4195. "ComponentData": {
  4196. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4197. "$type": "NodeSaveData"
  4198. },
  4199. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4200. "$type": "GeneralNodeTitleComponentSaveData",
  4201. "PaletteOverride": "MethodNodeTitlePalette"
  4202. },
  4203. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4204. "$type": "GeometrySaveData",
  4205. "Position": [
  4206. 640.0,
  4207. -2400.0
  4208. ]
  4209. },
  4210. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4211. "$type": "StylingComponentSaveData",
  4212. "SubStyle": ".method"
  4213. },
  4214. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4215. "$type": "PersistentIdComponentSaveData",
  4216. "PersistentId": "{130D77AB-8670-423B-9308-E8C269F53591}"
  4217. }
  4218. }
  4219. }
  4220. },
  4221. {
  4222. "Key": {
  4223. "id": 314478208135042
  4224. },
  4225. "Value": {
  4226. "ComponentData": {
  4227. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4228. "$type": "NodeSaveData"
  4229. },
  4230. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4231. "$type": "GeneralNodeTitleComponentSaveData",
  4232. "PaletteOverride": "MethodNodeTitlePalette"
  4233. },
  4234. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4235. "$type": "GeometrySaveData",
  4236. "Position": [
  4237. 640.0,
  4238. -2040.0
  4239. ]
  4240. },
  4241. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4242. "$type": "StylingComponentSaveData",
  4243. "SubStyle": ".method"
  4244. },
  4245. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4246. "$type": "PersistentIdComponentSaveData",
  4247. "PersistentId": "{649EC6CA-D3BE-4185-859E-DF85EE9E5851}"
  4248. }
  4249. }
  4250. }
  4251. },
  4252. {
  4253. "Key": {
  4254. "id": 315697978847106
  4255. },
  4256. "Value": {
  4257. "ComponentData": {
  4258. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4259. "$type": "NodeSaveData"
  4260. },
  4261. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4262. "$type": "GeneralNodeTitleComponentSaveData",
  4263. "PaletteOverride": "MethodNodeTitlePalette"
  4264. },
  4265. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4266. "$type": "GeometrySaveData",
  4267. "Position": [
  4268. 640.0,
  4269. 760.0
  4270. ]
  4271. },
  4272. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4273. "$type": "StylingComponentSaveData",
  4274. "SubStyle": ".method"
  4275. },
  4276. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4277. "$type": "PersistentIdComponentSaveData",
  4278. "PersistentId": "{B2E80C11-F2E9-4A10-A478-A1B993DC2CA1}"
  4279. }
  4280. }
  4281. }
  4282. },
  4283. {
  4284. "Key": {
  4285. "id": 316213374922626
  4286. },
  4287. "Value": {
  4288. "ComponentData": {
  4289. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4290. "$type": "NodeSaveData"
  4291. },
  4292. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4293. "$type": "GeneralNodeTitleComponentSaveData",
  4294. "PaletteOverride": "MethodNodeTitlePalette"
  4295. },
  4296. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4297. "$type": "GeometrySaveData",
  4298. "Position": [
  4299. 640.0,
  4300. -2200.0
  4301. ]
  4302. },
  4303. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4304. "$type": "StylingComponentSaveData",
  4305. "SubStyle": ".method"
  4306. },
  4307. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4308. "$type": "PersistentIdComponentSaveData",
  4309. "PersistentId": "{590D873B-68F7-4C88-9177-147891D07FD0}"
  4310. }
  4311. }
  4312. }
  4313. },
  4314. {
  4315. "Key": {
  4316. "id": 316934929428354
  4317. },
  4318. "Value": {
  4319. "ComponentData": {
  4320. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4321. "$type": "NodeSaveData"
  4322. },
  4323. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4324. "$type": "GeneralNodeTitleComponentSaveData",
  4325. "PaletteOverride": "MethodNodeTitlePalette"
  4326. },
  4327. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4328. "$type": "GeometrySaveData",
  4329. "Position": [
  4330. 640.0,
  4331. -1660.0
  4332. ]
  4333. },
  4334. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4335. "$type": "StylingComponentSaveData",
  4336. "SubStyle": ".method"
  4337. },
  4338. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4339. "$type": "PersistentIdComponentSaveData",
  4340. "PersistentId": "{67CDF608-E9E3-481B-AE7D-226415F6A4CF}"
  4341. }
  4342. }
  4343. }
  4344. },
  4345. {
  4346. "Key": {
  4347. "id": 317527634915202
  4348. },
  4349. "Value": {
  4350. "ComponentData": {
  4351. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4352. "$type": "NodeSaveData"
  4353. },
  4354. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4355. "$type": "GeneralNodeTitleComponentSaveData",
  4356. "PaletteOverride": "MethodNodeTitlePalette"
  4357. },
  4358. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4359. "$type": "GeometrySaveData",
  4360. "Position": [
  4361. 640.0,
  4362. -1460.0
  4363. ]
  4364. },
  4365. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4366. "$type": "StylingComponentSaveData",
  4367. "SubStyle": ".method"
  4368. },
  4369. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4370. "$type": "PersistentIdComponentSaveData",
  4371. "PersistentId": "{1012D29E-AF5C-49A3-9026-11415C93AC0A}"
  4372. }
  4373. }
  4374. }
  4375. },
  4376. {
  4377. "Key": {
  4378. "id": 318120340402050
  4379. },
  4380. "Value": {
  4381. "ComponentData": {
  4382. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4383. "$type": "NodeSaveData"
  4384. },
  4385. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4386. "$type": "GeneralNodeTitleComponentSaveData",
  4387. "PaletteOverride": "MethodNodeTitlePalette"
  4388. },
  4389. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4390. "$type": "GeometrySaveData",
  4391. "Position": [
  4392. 640.0,
  4393. -1820.0
  4394. ]
  4395. },
  4396. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4397. "$type": "StylingComponentSaveData",
  4398. "SubStyle": ".method"
  4399. },
  4400. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4401. "$type": "PersistentIdComponentSaveData",
  4402. "PersistentId": "{85DA3F6E-B602-4C46-BE48-93B4BF0D61C6}"
  4403. }
  4404. }
  4405. }
  4406. },
  4407. {
  4408. "Key": {
  4409. "id": 318567017000834
  4410. },
  4411. "Value": {
  4412. "ComponentData": {
  4413. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4414. "$type": "NodeSaveData"
  4415. },
  4416. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4417. "$type": "GeneralNodeTitleComponentSaveData",
  4418. "PaletteOverride": "MethodNodeTitlePalette"
  4419. },
  4420. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4421. "$type": "GeometrySaveData",
  4422. "Position": [
  4423. 640.0,
  4424. -1100.0
  4425. ]
  4426. },
  4427. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4428. "$type": "StylingComponentSaveData",
  4429. "SubStyle": ".method"
  4430. },
  4431. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4432. "$type": "PersistentIdComponentSaveData",
  4433. "PersistentId": "{7B8BBAB1-4D98-4770-9B2C-B874A3772D7C}"
  4434. }
  4435. }
  4436. }
  4437. },
  4438. {
  4439. "Key": {
  4440. "id": 319159722487682
  4441. },
  4442. "Value": {
  4443. "ComponentData": {
  4444. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4445. "$type": "NodeSaveData"
  4446. },
  4447. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4448. "$type": "GeneralNodeTitleComponentSaveData",
  4449. "PaletteOverride": "MethodNodeTitlePalette"
  4450. },
  4451. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4452. "$type": "GeometrySaveData",
  4453. "Position": [
  4454. 640.0,
  4455. -900.0
  4456. ]
  4457. },
  4458. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4459. "$type": "StylingComponentSaveData",
  4460. "SubStyle": ".method"
  4461. },
  4462. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4463. "$type": "PersistentIdComponentSaveData",
  4464. "PersistentId": "{D4F83828-369D-4D43-8474-8BA5EB06371C}"
  4465. }
  4466. }
  4467. }
  4468. },
  4469. {
  4470. "Key": {
  4471. "id": 319829737385858
  4472. },
  4473. "Value": {
  4474. "ComponentData": {
  4475. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4476. "$type": "NodeSaveData"
  4477. },
  4478. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4479. "$type": "GeneralNodeTitleComponentSaveData",
  4480. "PaletteOverride": "MethodNodeTitlePalette"
  4481. },
  4482. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4483. "$type": "GeometrySaveData",
  4484. "Position": [
  4485. 640.0,
  4486. -1260.0
  4487. ]
  4488. },
  4489. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4490. "$type": "StylingComponentSaveData",
  4491. "SubStyle": ".method"
  4492. },
  4493. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4494. "$type": "PersistentIdComponentSaveData",
  4495. "PersistentId": "{FD4657FB-5B57-404C-B20C-76926DA20E9B}"
  4496. }
  4497. }
  4498. }
  4499. },
  4500. {
  4501. "Key": {
  4502. "id": 320276413984642
  4503. },
  4504. "Value": {
  4505. "ComponentData": {
  4506. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4507. "$type": "NodeSaveData"
  4508. },
  4509. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4510. "$type": "GeneralNodeTitleComponentSaveData",
  4511. "PaletteOverride": "MethodNodeTitlePalette"
  4512. },
  4513. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4514. "$type": "GeometrySaveData",
  4515. "Position": [
  4516. 640.0,
  4517. -680.0
  4518. ]
  4519. },
  4520. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4521. "$type": "StylingComponentSaveData",
  4522. "SubStyle": ".method"
  4523. },
  4524. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4525. "$type": "PersistentIdComponentSaveData",
  4526. "PersistentId": "{C3281C8F-7535-43E6-AA65-6D23904B003D}"
  4527. }
  4528. }
  4529. }
  4530. },
  4531. {
  4532. "Key": {
  4533. "id": 320869119471490
  4534. },
  4535. "Value": {
  4536. "ComponentData": {
  4537. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4538. "$type": "NodeSaveData"
  4539. },
  4540. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4541. "$type": "GeneralNodeTitleComponentSaveData",
  4542. "PaletteOverride": "MethodNodeTitlePalette"
  4543. },
  4544. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4545. "$type": "GeometrySaveData",
  4546. "Position": [
  4547. 640.0,
  4548. -480.0
  4549. ]
  4550. },
  4551. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4552. "$type": "StylingComponentSaveData",
  4553. "SubStyle": ".method"
  4554. },
  4555. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4556. "$type": "PersistentIdComponentSaveData",
  4557. "PersistentId": "{438DA27F-907F-4FE8-A4A1-C6EF0EF8D1FA}"
  4558. }
  4559. }
  4560. }
  4561. },
  4562. {
  4563. "Key": {
  4564. "id": 321461824958338
  4565. },
  4566. "Value": {
  4567. "ComponentData": {
  4568. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4569. "$type": "NodeSaveData"
  4570. },
  4571. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4572. "$type": "GeneralNodeTitleComponentSaveData",
  4573. "PaletteOverride": "MethodNodeTitlePalette"
  4574. },
  4575. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4576. "$type": "GeometrySaveData",
  4577. "Position": [
  4578. 640.0,
  4579. -120.0
  4580. ]
  4581. },
  4582. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4583. "$type": "StylingComponentSaveData",
  4584. "SubStyle": ".method"
  4585. },
  4586. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4587. "$type": "PersistentIdComponentSaveData",
  4588. "PersistentId": "{51F874FB-1888-414C-9EAF-92E8AEAC8871}"
  4589. }
  4590. }
  4591. }
  4592. },
  4593. {
  4594. "Key": {
  4595. "id": 322260688875394
  4596. },
  4597. "Value": {
  4598. "ComponentData": {
  4599. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4600. "$type": "NodeSaveData"
  4601. },
  4602. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4603. "$type": "GeneralNodeTitleComponentSaveData",
  4604. "PaletteOverride": "MethodNodeTitlePalette"
  4605. },
  4606. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4607. "$type": "GeometrySaveData",
  4608. "Position": [
  4609. 640.0,
  4610. 240.0
  4611. ]
  4612. },
  4613. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4614. "$type": "StylingComponentSaveData",
  4615. "SubStyle": ".method"
  4616. },
  4617. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4618. "$type": "PersistentIdComponentSaveData",
  4619. "PersistentId": "{0790A5F2-9CAA-4E6E-9426-2C850590CB60}"
  4620. }
  4621. }
  4622. }
  4623. },
  4624. {
  4625. "Key": {
  4626. "id": 323128272269186
  4627. },
  4628. "Value": {
  4629. "ComponentData": {
  4630. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4631. "$type": "NodeSaveData"
  4632. },
  4633. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4634. "$type": "GeneralNodeTitleComponentSaveData",
  4635. "PaletteOverride": "MethodNodeTitlePalette"
  4636. },
  4637. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4638. "$type": "GeometrySaveData",
  4639. "Position": [
  4640. 640.0,
  4641. -280.0
  4642. ]
  4643. },
  4644. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4645. "$type": "StylingComponentSaveData",
  4646. "SubStyle": ".method"
  4647. },
  4648. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4649. "$type": "PersistentIdComponentSaveData",
  4650. "PersistentId": "{5D2D3CD9-7CB3-4A07-9078-BE6FEAB1F9D4}"
  4651. }
  4652. }
  4653. }
  4654. },
  4655. {
  4656. "Key": {
  4657. "id": 323574948867970
  4658. },
  4659. "Value": {
  4660. "ComponentData": {
  4661. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4662. "$type": "NodeSaveData"
  4663. },
  4664. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4665. "$type": "GeneralNodeTitleComponentSaveData",
  4666. "PaletteOverride": "MethodNodeTitlePalette"
  4667. },
  4668. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4669. "$type": "GeometrySaveData",
  4670. "Position": [
  4671. 640.0,
  4672. 80.0
  4673. ]
  4674. },
  4675. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4676. "$type": "StylingComponentSaveData",
  4677. "SubStyle": ".method"
  4678. },
  4679. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4680. "$type": "PersistentIdComponentSaveData",
  4681. "PersistentId": "{308AC010-54C2-4768-88BC-CF291F527175}"
  4682. }
  4683. }
  4684. }
  4685. },
  4686. {
  4687. "Key": {
  4688. "id": 324090344943490
  4689. },
  4690. "Value": {
  4691. "ComponentData": {
  4692. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4693. "$type": "NodeSaveData"
  4694. },
  4695. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4696. "$type": "GeneralNodeTitleComponentSaveData",
  4697. "PaletteOverride": "MethodNodeTitlePalette"
  4698. },
  4699. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4700. "$type": "GeometrySaveData",
  4701. "Position": [
  4702. 640.0,
  4703. 440.0
  4704. ]
  4705. },
  4706. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4707. "$type": "StylingComponentSaveData",
  4708. "SubStyle": ".method"
  4709. },
  4710. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4711. "$type": "PersistentIdComponentSaveData",
  4712. "PersistentId": "{974A756B-344D-4E90-95A6-91FF05745C51}"
  4713. }
  4714. }
  4715. }
  4716. },
  4717. {
  4718. "Key": {
  4719. "id": 324605741019010
  4720. },
  4721. "Value": {
  4722. "ComponentData": {
  4723. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4724. "$type": "NodeSaveData"
  4725. },
  4726. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4727. "$type": "GeneralNodeTitleComponentSaveData",
  4728. "PaletteOverride": "MethodNodeTitlePalette"
  4729. },
  4730. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4731. "$type": "GeometrySaveData",
  4732. "Position": [
  4733. 640.0,
  4734. 920.0
  4735. ]
  4736. },
  4737. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4738. "$type": "StylingComponentSaveData",
  4739. "SubStyle": ".method"
  4740. },
  4741. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4742. "$type": "PersistentIdComponentSaveData",
  4743. "PersistentId": "{6BAB4C0A-0BB2-4479-B3E1-93DB5D70B334}"
  4744. }
  4745. }
  4746. }
  4747. },
  4748. {
  4749. "Key": {
  4750. "id": 325121137094530
  4751. },
  4752. "Value": {
  4753. "ComponentData": {
  4754. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4755. "$type": "NodeSaveData"
  4756. },
  4757. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4758. "$type": "GeneralNodeTitleComponentSaveData",
  4759. "PaletteOverride": "MethodNodeTitlePalette"
  4760. },
  4761. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4762. "$type": "GeometrySaveData",
  4763. "Position": [
  4764. 640.0,
  4765. 1080.0
  4766. ]
  4767. },
  4768. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4769. "$type": "StylingComponentSaveData",
  4770. "SubStyle": ".method"
  4771. },
  4772. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4773. "$type": "PersistentIdComponentSaveData",
  4774. "PersistentId": "{6D70F3D8-ED30-46C2-A8A3-C5C4E994EA4C}"
  4775. }
  4776. }
  4777. }
  4778. },
  4779. {
  4780. "Key": {
  4781. "id": 338998176427906
  4782. },
  4783. "Value": {
  4784. "ComponentData": {
  4785. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4786. "$type": "NodeSaveData"
  4787. },
  4788. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4789. "$type": "GeneralNodeTitleComponentSaveData",
  4790. "PaletteOverride": "MethodNodeTitlePalette"
  4791. },
  4792. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4793. "$type": "GeometrySaveData",
  4794. "Position": [
  4795. 640.0,
  4796. 1240.0
  4797. ]
  4798. },
  4799. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4800. "$type": "StylingComponentSaveData",
  4801. "SubStyle": ".method"
  4802. },
  4803. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4804. "$type": "PersistentIdComponentSaveData",
  4805. "PersistentId": "{3FC15D52-C280-4A35-9036-FBC4326EDEAC}"
  4806. }
  4807. }
  4808. }
  4809. }
  4810. ],
  4811. "StatisticsHelper": {
  4812. "InstanceCounter": [
  4813. {
  4814. "Key": 4199610336680704683,
  4815. "Value": 1
  4816. },
  4817. {
  4818. "Key": 4271004856738215795,
  4819. "Value": 1
  4820. },
  4821. {
  4822. "Key": 10204019744198319120,
  4823. "Value": 1
  4824. },
  4825. {
  4826. "Key": 18367790618498189033,
  4827. "Value": 22
  4828. }
  4829. ]
  4830. }
  4831. },
  4832. "Component_[16521879069524430669]": {
  4833. "$type": "EditorGraphVariableManagerComponent",
  4834. "Id": 16521879069524430669
  4835. }
  4836. }
  4837. }
  4838. }
  4839. }