Test_AZStdArray.scriptcanvas 381 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 647579796647
  9. },
  10. "Name": "Test_AZStdArray",
  11. "Components": {
  12. "Component_[18333906749309289018]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 18333906749309289018,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{0DDB6D19-D5E8-48F5-B9E1-B58E58A645D6}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 8
  26. },
  27. "isNullPointer": false,
  28. "$type": "Vector3",
  29. "value": [
  30. 0.0,
  31. 0.0,
  32. 0.0
  33. ],
  34. "label": "Vector3"
  35. },
  36. "VariableId": {
  37. "m_id": "{0DDB6D19-D5E8-48F5-B9E1-B58E58A645D6}"
  38. },
  39. "VariableName": "Variable 5"
  40. }
  41. },
  42. {
  43. "Key": {
  44. "m_id": "{6B41849B-28BE-4A9B-8F5A-2BFB1EC1539C}"
  45. },
  46. "Value": {
  47. "Datum": {
  48. "isOverloadedStorage": false,
  49. "scriptCanvasType": {
  50. "m_type": 3
  51. },
  52. "isNullPointer": false,
  53. "$type": "double",
  54. "value": 2.0,
  55. "label": "2"
  56. },
  57. "VariableId": {
  58. "m_id": "{6B41849B-28BE-4A9B-8F5A-2BFB1EC1539C}"
  59. },
  60. "VariableName": "2"
  61. }
  62. },
  63. {
  64. "Key": {
  65. "m_id": "{AC1C6FC0-6C3D-42DF-999E-94621CAC1A58}"
  66. },
  67. "Value": {
  68. "Datum": {
  69. "isOverloadedStorage": false,
  70. "scriptCanvasType": {
  71. "m_type": 8
  72. },
  73. "isNullPointer": false,
  74. "$type": "Vector3",
  75. "value": [
  76. 1.0,
  77. 2.0,
  78. 3.0
  79. ],
  80. "label": "Vector3"
  81. },
  82. "VariableId": {
  83. "m_id": "{AC1C6FC0-6C3D-42DF-999E-94621CAC1A58}"
  84. },
  85. "VariableName": "Variable 2"
  86. }
  87. },
  88. {
  89. "Key": {
  90. "m_id": "{BC1352F5-DECD-495E-B354-9FD0D76F30D2}"
  91. },
  92. "Value": {
  93. "Datum": {
  94. "isOverloadedStorage": false,
  95. "scriptCanvasType": {
  96. "m_type": 4,
  97. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  98. },
  99. "isNullPointer": false,
  100. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  101. "label": "Array<Vector3>"
  102. },
  103. "VariableId": {
  104. "m_id": "{BC1352F5-DECD-495E-B354-9FD0D76F30D2}"
  105. },
  106. "VariableName": "Variable 6"
  107. }
  108. },
  109. {
  110. "Key": {
  111. "m_id": "{E0F9077A-317E-4482-B2A1-3C75DBD013DD}"
  112. },
  113. "Value": {
  114. "Datum": {
  115. "isOverloadedStorage": false,
  116. "scriptCanvasType": {
  117. "m_type": 4,
  118. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  119. },
  120. "isNullPointer": false,
  121. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  122. "label": "Array<Vector3>"
  123. },
  124. "VariableId": {
  125. "m_id": "{E0F9077A-317E-4482-B2A1-3C75DBD013DD}"
  126. },
  127. "VariableName": "Variable 7"
  128. }
  129. }
  130. ]
  131. }
  132. },
  133. "Component_[5420144030338888523]": {
  134. "$type": "EditorGraph",
  135. "Id": 5420144030338888523,
  136. "m_graphData": {
  137. "m_nodes": [
  138. {
  139. "Id": {
  140. "id": 754953979047
  141. },
  142. "Name": "93850361574774",
  143. "Components": {
  144. "Component_[10183557257877549893]": {
  145. "$type": "MethodOverloaded",
  146. "Id": 10183557257877549893,
  147. "Slots": [
  148. {
  149. "isVisibile": false,
  150. "id": {
  151. "m_id": "{9AF796FE-B03E-4AF7-9D9E-12247ED8CA28}"
  152. },
  153. "contracts": [
  154. {
  155. "$type": "SlotTypeContract"
  156. },
  157. null
  158. ],
  159. "slotName": "EntityID: 0",
  160. "DisplayDataType": {
  161. "m_type": 1
  162. },
  163. "Descriptor": {
  164. "ConnectionType": 1,
  165. "SlotType": 2
  166. },
  167. "DataType": 1
  168. },
  169. {
  170. "IsOverload": true,
  171. "id": {
  172. "m_id": "{627D0FF1-1447-48DE-AFEC-2AEBEF6D19B9}"
  173. },
  174. "DynamicTypeOverride": 3,
  175. "contracts": [
  176. {
  177. "$type": "SlotTypeContract"
  178. },
  179. null
  180. ],
  181. "slotName": "Candidate",
  182. "toolTip": "left of ==",
  183. "DisplayDataType": {
  184. "m_type": 8
  185. },
  186. "Descriptor": {
  187. "ConnectionType": 1,
  188. "SlotType": 2
  189. },
  190. "DataType": 1
  191. },
  192. {
  193. "IsOverload": true,
  194. "id": {
  195. "m_id": "{13961632-556C-425A-AFF1-1E8BE1CE2C38}"
  196. },
  197. "DynamicTypeOverride": 3,
  198. "contracts": [
  199. {
  200. "$type": "SlotTypeContract"
  201. },
  202. null
  203. ],
  204. "slotName": "Reference",
  205. "toolTip": "right of ==",
  206. "DisplayDataType": {
  207. "m_type": 8
  208. },
  209. "Descriptor": {
  210. "ConnectionType": 1,
  211. "SlotType": 2
  212. },
  213. "DataType": 1
  214. },
  215. {
  216. "id": {
  217. "m_id": "{BE293F16-9B5E-4F93-93AA-649BF391899D}"
  218. },
  219. "contracts": [
  220. {
  221. "$type": "SlotTypeContract"
  222. },
  223. null
  224. ],
  225. "slotName": "Report",
  226. "toolTip": "additional notes for the test report",
  227. "DisplayDataType": {
  228. "m_type": 5
  229. },
  230. "Descriptor": {
  231. "ConnectionType": 1,
  232. "SlotType": 2
  233. },
  234. "DataType": 1
  235. },
  236. {
  237. "id": {
  238. "m_id": "{A542A1EB-527E-46A8-9017-E2B359A36AF9}"
  239. },
  240. "contracts": [
  241. {
  242. "$type": "SlotTypeContract"
  243. }
  244. ],
  245. "slotName": "In",
  246. "Descriptor": {
  247. "ConnectionType": 1,
  248. "SlotType": 1
  249. }
  250. },
  251. {
  252. "id": {
  253. "m_id": "{E6B85A22-8B97-4B80-803B-5CD2F04BB584}"
  254. },
  255. "contracts": [
  256. {
  257. "$type": "SlotTypeContract"
  258. }
  259. ],
  260. "slotName": "Out",
  261. "Descriptor": {
  262. "ConnectionType": 2,
  263. "SlotType": 1
  264. }
  265. }
  266. ],
  267. "Datums": [
  268. {
  269. "isOverloadedStorage": false,
  270. "scriptCanvasType": {
  271. "m_type": 1
  272. },
  273. "isNullPointer": false,
  274. "$type": "EntityId",
  275. "value": {
  276. "id": 4276206253
  277. }
  278. },
  279. {
  280. "isOverloadedStorage": false,
  281. "scriptCanvasType": {
  282. "m_type": 8
  283. },
  284. "isNullPointer": false,
  285. "$type": "Vector3",
  286. "value": [
  287. 0.0,
  288. 0.0,
  289. 0.0
  290. ],
  291. "label": "Candidate"
  292. },
  293. {
  294. "isOverloadedStorage": false,
  295. "scriptCanvasType": {
  296. "m_type": 8
  297. },
  298. "isNullPointer": false,
  299. "$type": "Vector3",
  300. "value": [
  301. 0.0,
  302. 0.0,
  303. 0.0
  304. ],
  305. "label": "Reference"
  306. },
  307. {
  308. "isOverloadedStorage": false,
  309. "scriptCanvasType": {
  310. "m_type": 5
  311. },
  312. "isNullPointer": false,
  313. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  314. "value": "back equal",
  315. "label": "Report"
  316. }
  317. ],
  318. "methodType": 2,
  319. "methodName": "Expect Equal",
  320. "className": "Unit Testing",
  321. "resultSlotIDs": [
  322. {}
  323. ],
  324. "prettyClassName": "Unit Testing",
  325. "orderedInputSlotIds": [
  326. {
  327. "m_id": "{9AF796FE-B03E-4AF7-9D9E-12247ED8CA28}"
  328. },
  329. {
  330. "m_id": "{627D0FF1-1447-48DE-AFEC-2AEBEF6D19B9}"
  331. },
  332. {
  333. "m_id": "{13961632-556C-425A-AFF1-1E8BE1CE2C38}"
  334. },
  335. {
  336. "m_id": "{BE293F16-9B5E-4F93-93AA-649BF391899D}"
  337. }
  338. ],
  339. "outputSlotIds": [
  340. {}
  341. ]
  342. }
  343. }
  344. },
  345. {
  346. "Id": {
  347. "id": 737774109863
  348. },
  349. "Name": "SC-Node(Get First Element)",
  350. "Components": {
  351. "Component_[1029717521419721655]": {
  352. "$type": "MethodOverloaded",
  353. "Id": 1029717521419721655,
  354. "Slots": [
  355. {
  356. "IsOverload": true,
  357. "id": {
  358. "m_id": "{BAE0F270-88BC-4E5C-B461-4BCD4AEAB550}"
  359. },
  360. "DynamicTypeOverride": 3,
  361. "contracts": [
  362. {
  363. "$type": "SlotTypeContract"
  364. },
  365. null
  366. ],
  367. "slotName": "Array<Vector3>: 0",
  368. "DisplayDataType": {
  369. "m_type": 4,
  370. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  371. },
  372. "Descriptor": {
  373. "ConnectionType": 1,
  374. "SlotType": 2
  375. },
  376. "DataType": 1
  377. },
  378. {
  379. "id": {
  380. "m_id": "{58575C6C-1545-46EB-96C4-D4AED1F1D40C}"
  381. },
  382. "contracts": [
  383. {
  384. "$type": "SlotTypeContract"
  385. }
  386. ],
  387. "slotName": "In",
  388. "Descriptor": {
  389. "ConnectionType": 1,
  390. "SlotType": 1
  391. }
  392. },
  393. {
  394. "id": {
  395. "m_id": "{946B5003-FD53-4B50-B28E-2686E3F9A878}"
  396. },
  397. "contracts": [
  398. {
  399. "$type": "SlotTypeContract"
  400. }
  401. ],
  402. "slotName": "Out",
  403. "Descriptor": {
  404. "ConnectionType": 2,
  405. "SlotType": 1
  406. }
  407. },
  408. {
  409. "id": {
  410. "m_id": "{D1658057-63D8-4BDE-B0E1-A863C20F0F61}"
  411. },
  412. "contracts": [
  413. {
  414. "$type": "SlotTypeContract"
  415. }
  416. ],
  417. "slotName": "Empty",
  418. "Descriptor": {
  419. "ConnectionType": 2,
  420. "SlotType": 1
  421. }
  422. },
  423. {
  424. "IsOverload": true,
  425. "id": {
  426. "m_id": "{80902C96-A82C-40E2-9CDE-ECF9F53A7024}"
  427. },
  428. "DynamicTypeOverride": 3,
  429. "contracts": [
  430. {
  431. "$type": "SlotTypeContract"
  432. }
  433. ],
  434. "slotName": "Vector3",
  435. "DisplayDataType": {
  436. "m_type": 8
  437. },
  438. "Descriptor": {
  439. "ConnectionType": 2,
  440. "SlotType": 2
  441. },
  442. "DataType": 1
  443. }
  444. ],
  445. "Datums": [
  446. {
  447. "scriptCanvasType": {
  448. "m_type": 4,
  449. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  450. },
  451. "isNullPointer": false,
  452. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  453. "label": "Array<Vector3>: 0"
  454. }
  455. ],
  456. "methodType": 2,
  457. "methodName": "Get First Element",
  458. "className": "AZStd::vector<Vector3, allocator>",
  459. "resultSlotIDs": [
  460. {}
  461. ],
  462. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  463. "orderedInputSlotIds": [
  464. {
  465. "m_id": "{BAE0F270-88BC-4E5C-B461-4BCD4AEAB550}"
  466. }
  467. ],
  468. "outputSlotIds": [
  469. {
  470. "m_id": "{80902C96-A82C-40E2-9CDE-ECF9F53A7024}"
  471. }
  472. ]
  473. }
  474. }
  475. },
  476. {
  477. "Id": {
  478. "id": 720594240679
  479. },
  480. "Name": "SC-Node(Get Element)",
  481. "Components": {
  482. "Component_[12048062897196338206]": {
  483. "$type": "MethodOverloaded",
  484. "Id": 12048062897196338206,
  485. "Slots": [
  486. {
  487. "IsOverload": true,
  488. "id": {
  489. "m_id": "{09F2E9F5-4D64-4D2E-B364-9BE26489A338}"
  490. },
  491. "DynamicTypeOverride": 3,
  492. "contracts": [
  493. {
  494. "$type": "SlotTypeContract"
  495. },
  496. null
  497. ],
  498. "slotName": "Array<Vector3>: 0",
  499. "DisplayDataType": {
  500. "m_type": 4,
  501. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  502. },
  503. "Descriptor": {
  504. "ConnectionType": 1,
  505. "SlotType": 2
  506. },
  507. "DataType": 1
  508. },
  509. {
  510. "IsOverload": true,
  511. "id": {
  512. "m_id": "{7BC08D78-5B2F-4BD6-BFD9-28D09612D53A}"
  513. },
  514. "DynamicTypeOverride": 3,
  515. "contracts": [
  516. {
  517. "$type": "SlotTypeContract"
  518. },
  519. null
  520. ],
  521. "slotName": "Index",
  522. "toolTip": "The index to read from",
  523. "DisplayDataType": {
  524. "m_type": 3
  525. },
  526. "Descriptor": {
  527. "ConnectionType": 1,
  528. "SlotType": 2
  529. },
  530. "DataType": 1
  531. },
  532. {
  533. "id": {
  534. "m_id": "{2C4F449E-ACBD-439E-8C9F-1E0F3D81B563}"
  535. },
  536. "contracts": [
  537. {
  538. "$type": "SlotTypeContract"
  539. }
  540. ],
  541. "slotName": "In",
  542. "Descriptor": {
  543. "ConnectionType": 1,
  544. "SlotType": 1
  545. }
  546. },
  547. {
  548. "id": {
  549. "m_id": "{65380C81-832A-44F8-BF96-985922D4F0D5}"
  550. },
  551. "contracts": [
  552. {
  553. "$type": "SlotTypeContract"
  554. }
  555. ],
  556. "slotName": "Out",
  557. "Descriptor": {
  558. "ConnectionType": 2,
  559. "SlotType": 1
  560. }
  561. },
  562. {
  563. "id": {
  564. "m_id": "{B0094C22-48A7-47E6-A502-1FA0E2EF4DAB}"
  565. },
  566. "contracts": [
  567. {
  568. "$type": "SlotTypeContract"
  569. }
  570. ],
  571. "slotName": "Key Not Found",
  572. "Descriptor": {
  573. "ConnectionType": 2,
  574. "SlotType": 1
  575. }
  576. },
  577. {
  578. "IsOverload": true,
  579. "id": {
  580. "m_id": "{F8922A77-1B2A-4F2E-A054-366AA5F09874}"
  581. },
  582. "DynamicTypeOverride": 3,
  583. "contracts": [
  584. {
  585. "$type": "SlotTypeContract"
  586. }
  587. ],
  588. "slotName": "Vector3",
  589. "DisplayDataType": {
  590. "m_type": 8
  591. },
  592. "Descriptor": {
  593. "ConnectionType": 2,
  594. "SlotType": 2
  595. },
  596. "DataType": 1
  597. }
  598. ],
  599. "Datums": [
  600. {
  601. "scriptCanvasType": {
  602. "m_type": 4,
  603. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  604. },
  605. "isNullPointer": false,
  606. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  607. "label": "Array<Vector3>: 0"
  608. },
  609. {
  610. "isOverloadedStorage": false,
  611. "scriptCanvasType": {
  612. "m_type": 3
  613. },
  614. "isNullPointer": false,
  615. "$type": "double",
  616. "value": 0.0,
  617. "label": "Index"
  618. }
  619. ],
  620. "methodType": 2,
  621. "methodName": "Get Element",
  622. "className": "AZStd::vector<Vector3, allocator>",
  623. "resultSlotIDs": [
  624. {}
  625. ],
  626. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  627. "orderedInputSlotIds": [
  628. {
  629. "m_id": "{09F2E9F5-4D64-4D2E-B364-9BE26489A338}"
  630. },
  631. {
  632. "m_id": "{7BC08D78-5B2F-4BD6-BFD9-28D09612D53A}"
  633. }
  634. ],
  635. "outputSlotIds": [
  636. {
  637. "m_id": "{F8922A77-1B2A-4F2E-A054-366AA5F09874}"
  638. }
  639. ]
  640. }
  641. }
  642. },
  643. {
  644. "Id": {
  645. "id": 703414371495
  646. },
  647. "Name": "86591866844534",
  648. "Components": {
  649. "Component_[12664264153116333901]": {
  650. "$type": "MethodOverloaded",
  651. "Id": 12664264153116333901,
  652. "Slots": [
  653. {
  654. "isVisibile": false,
  655. "id": {
  656. "m_id": "{0A627E0D-BE17-49FA-BC80-509940944635}"
  657. },
  658. "contracts": [
  659. {
  660. "$type": "SlotTypeContract"
  661. },
  662. null
  663. ],
  664. "slotName": "EntityID: 0 :-(",
  665. "DisplayDataType": {
  666. "m_type": 1
  667. },
  668. "Descriptor": {
  669. "ConnectionType": 1,
  670. "SlotType": 2
  671. },
  672. "DataType": 1
  673. },
  674. {
  675. "IsOverload": true,
  676. "id": {
  677. "m_id": "{BA774659-E0B5-43A0-9FDA-1AA72C644AC3}"
  678. },
  679. "DynamicTypeOverride": 3,
  680. "contracts": [
  681. {
  682. "$type": "SlotTypeContract"
  683. },
  684. null
  685. ],
  686. "slotName": "Candidate :-(",
  687. "toolTip": "left of ==",
  688. "DisplayDataType": {
  689. "m_type": 3
  690. },
  691. "Descriptor": {
  692. "ConnectionType": 1,
  693. "SlotType": 2
  694. },
  695. "DataType": 1
  696. },
  697. {
  698. "IsOverload": true,
  699. "id": {
  700. "m_id": "{B85027A1-956C-401E-BFD4-FBDC2066EC6C}"
  701. },
  702. "DynamicTypeOverride": 3,
  703. "contracts": [
  704. {
  705. "$type": "SlotTypeContract"
  706. },
  707. null
  708. ],
  709. "slotName": "Reference :-(",
  710. "toolTip": "right of ==",
  711. "DisplayDataType": {
  712. "m_type": 3
  713. },
  714. "Descriptor": {
  715. "ConnectionType": 1,
  716. "SlotType": 2
  717. },
  718. "DataType": 1
  719. },
  720. {
  721. "id": {
  722. "m_id": "{6AA223C0-5053-452C-95BF-9768ACAD4B27}"
  723. },
  724. "contracts": [
  725. {
  726. "$type": "SlotTypeContract"
  727. },
  728. null
  729. ],
  730. "slotName": "Report :-(",
  731. "toolTip": "additional notes for the test report",
  732. "DisplayDataType": {
  733. "m_type": 5
  734. },
  735. "Descriptor": {
  736. "ConnectionType": 1,
  737. "SlotType": 2
  738. },
  739. "DataType": 1
  740. },
  741. {
  742. "id": {
  743. "m_id": "{5BE3D97D-9777-47FC-8B90-21EAB192670F}"
  744. },
  745. "contracts": [
  746. {
  747. "$type": "SlotTypeContract"
  748. }
  749. ],
  750. "slotName": "In",
  751. "Descriptor": {
  752. "ConnectionType": 1,
  753. "SlotType": 1
  754. }
  755. },
  756. {
  757. "id": {
  758. "m_id": "{7A5ABBA0-CF44-4933-95ED-48541A4FF013}"
  759. },
  760. "contracts": [
  761. {
  762. "$type": "SlotTypeContract"
  763. }
  764. ],
  765. "slotName": "Out",
  766. "Descriptor": {
  767. "ConnectionType": 2,
  768. "SlotType": 1
  769. }
  770. }
  771. ],
  772. "Datums": [
  773. {
  774. "isOverloadedStorage": false,
  775. "scriptCanvasType": {
  776. "m_type": 1
  777. },
  778. "isNullPointer": false,
  779. "$type": "EntityId",
  780. "value": {
  781. "id": 4276206253
  782. },
  783. "label": "EntityID: 0 :-("
  784. },
  785. {
  786. "isOverloadedStorage": false,
  787. "scriptCanvasType": {
  788. "m_type": 3
  789. },
  790. "isNullPointer": false,
  791. "$type": "double",
  792. "value": 0.0,
  793. "label": "Candidate :-("
  794. },
  795. {
  796. "isOverloadedStorage": false,
  797. "scriptCanvasType": {
  798. "m_type": 3
  799. },
  800. "isNullPointer": false,
  801. "$type": "double",
  802. "value": 0.0,
  803. "label": "Reference :-("
  804. },
  805. {
  806. "isOverloadedStorage": false,
  807. "scriptCanvasType": {
  808. "m_type": 5
  809. },
  810. "isNullPointer": false,
  811. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  812. "value": "size",
  813. "label": "Report :-("
  814. }
  815. ],
  816. "methodType": 2,
  817. "methodName": "Expect Equal",
  818. "className": "Unit Testing",
  819. "resultSlotIDs": [
  820. {}
  821. ],
  822. "prettyClassName": "Unit Testing",
  823. "orderedInputSlotIds": [
  824. {
  825. "m_id": "{0A627E0D-BE17-49FA-BC80-509940944635}"
  826. },
  827. {
  828. "m_id": "{BA774659-E0B5-43A0-9FDA-1AA72C644AC3}"
  829. },
  830. {
  831. "m_id": "{B85027A1-956C-401E-BFD4-FBDC2066EC6C}"
  832. },
  833. {
  834. "m_id": "{6AA223C0-5053-452C-95BF-9768ACAD4B27}"
  835. }
  836. ],
  837. "outputSlotIds": [
  838. {}
  839. ]
  840. }
  841. }
  842. },
  843. {
  844. "Id": {
  845. "id": 686234502311
  846. },
  847. "Name": "SC Node(GetVariable)",
  848. "Components": {
  849. "Component_[13240787890193237678]": {
  850. "$type": "GetVariableNode",
  851. "Id": 13240787890193237678,
  852. "Slots": [
  853. {
  854. "id": {
  855. "m_id": "{407EAB20-FAD5-46A9-B7DC-5F23ED520E6C}"
  856. },
  857. "contracts": [
  858. {
  859. "$type": "SlotTypeContract"
  860. }
  861. ],
  862. "slotName": "In",
  863. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  864. "Descriptor": {
  865. "ConnectionType": 1,
  866. "SlotType": 1
  867. }
  868. },
  869. {
  870. "id": {
  871. "m_id": "{8C903DE0-5678-4FD0-9005-7F6C0F8E2FD0}"
  872. },
  873. "contracts": [
  874. {
  875. "$type": "SlotTypeContract"
  876. }
  877. ],
  878. "slotName": "Out",
  879. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  880. "Descriptor": {
  881. "ConnectionType": 2,
  882. "SlotType": 1
  883. }
  884. },
  885. {
  886. "id": {
  887. "m_id": "{FBB88698-B8B9-4B40-9600-B2BB83862ABE}"
  888. },
  889. "contracts": [
  890. {
  891. "$type": "SlotTypeContract"
  892. }
  893. ],
  894. "slotName": "Number",
  895. "DisplayDataType": {
  896. "m_type": 3
  897. },
  898. "Descriptor": {
  899. "ConnectionType": 2,
  900. "SlotType": 2
  901. },
  902. "DataType": 1
  903. }
  904. ],
  905. "m_variableId": {
  906. "m_id": "{6B41849B-28BE-4A9B-8F5A-2BFB1EC1539C}"
  907. },
  908. "m_variableDataOutSlotId": {
  909. "m_id": "{FBB88698-B8B9-4B40-9600-B2BB83862ABE}"
  910. }
  911. }
  912. }
  913. },
  914. {
  915. "Id": {
  916. "id": 669054633127
  917. },
  918. "Name": "163789609022838",
  919. "Components": {
  920. "Component_[13792480750929352977]": {
  921. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  922. "Id": 13792480750929352977,
  923. "Slots": [
  924. {
  925. "isVisibile": false,
  926. "id": {
  927. "m_id": "{0C92F73E-8806-408B-9657-CA902B0C6C03}"
  928. },
  929. "contracts": [
  930. {
  931. "$type": "SlotTypeContract"
  932. },
  933. null
  934. ],
  935. "slotName": "EntityID: 0",
  936. "Descriptor": {
  937. "ConnectionType": 1,
  938. "SlotType": 2
  939. },
  940. "DataType": 1
  941. },
  942. {
  943. "id": {
  944. "m_id": "{C64472A5-F633-4876-BC5A-2F2CBEAA5D73}"
  945. },
  946. "contracts": [
  947. {
  948. "$type": "SlotTypeContract"
  949. },
  950. null
  951. ],
  952. "slotName": "Report",
  953. "toolTip": "additional notes for the test report",
  954. "DisplayDataType": {
  955. "m_type": 5
  956. },
  957. "Descriptor": {
  958. "ConnectionType": 1,
  959. "SlotType": 2
  960. },
  961. "DataType": 1
  962. },
  963. {
  964. "id": {
  965. "m_id": "{0FA5394C-FF35-4775-B7E0-EF4E557E1B22}"
  966. },
  967. "contracts": [
  968. {
  969. "$type": "SlotTypeContract"
  970. }
  971. ],
  972. "slotName": "In",
  973. "Descriptor": {
  974. "ConnectionType": 1,
  975. "SlotType": 1
  976. }
  977. },
  978. {
  979. "id": {
  980. "m_id": "{01D23FA3-6524-4CEB-BDBA-F81D3A705F6A}"
  981. },
  982. "contracts": [
  983. {
  984. "$type": "SlotTypeContract"
  985. }
  986. ],
  987. "slotName": "Out",
  988. "Descriptor": {
  989. "ConnectionType": 2,
  990. "SlotType": 1
  991. }
  992. }
  993. ],
  994. "Datums": [
  995. {
  996. "isOverloadedStorage": false,
  997. "scriptCanvasType": {
  998. "m_type": 1
  999. },
  1000. "isNullPointer": false,
  1001. "$type": "EntityId",
  1002. "value": {
  1003. "id": 4276206253
  1004. }
  1005. },
  1006. {
  1007. "isOverloadedStorage": false,
  1008. "scriptCanvasType": {
  1009. "m_type": 5
  1010. },
  1011. "isNullPointer": false,
  1012. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1013. "value": "at",
  1014. "label": "Report"
  1015. }
  1016. ],
  1017. "methodType": 2,
  1018. "methodName": "Add Failure",
  1019. "className": "Unit Testing",
  1020. "resultSlotIDs": [
  1021. {}
  1022. ],
  1023. "prettyClassName": "Unit Testing"
  1024. }
  1025. }
  1026. },
  1027. {
  1028. "Id": {
  1029. "id": 651874763943
  1030. },
  1031. "Name": "SC-Node(Add Element at End)",
  1032. "Components": {
  1033. "Component_[14312891513483949967]": {
  1034. "$type": "MethodOverloaded",
  1035. "Id": 14312891513483949967,
  1036. "Slots": [
  1037. {
  1038. "IsOverload": true,
  1039. "id": {
  1040. "m_id": "{7C9AFD33-8E8C-4915-A698-5D2189FDE423}"
  1041. },
  1042. "DynamicTypeOverride": 3,
  1043. "contracts": [
  1044. {
  1045. "$type": "SlotTypeContract"
  1046. },
  1047. null
  1048. ],
  1049. "slotName": "Array<Vector3>: 0",
  1050. "DisplayDataType": {
  1051. "m_type": 4,
  1052. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1053. },
  1054. "Descriptor": {
  1055. "ConnectionType": 1,
  1056. "SlotType": 2
  1057. },
  1058. "DataType": 1
  1059. },
  1060. {
  1061. "IsOverload": true,
  1062. "id": {
  1063. "m_id": "{6C9B2659-658F-413C-A79E-7B5044036C2D}"
  1064. },
  1065. "DynamicTypeOverride": 3,
  1066. "contracts": [
  1067. {
  1068. "$type": "SlotTypeContract"
  1069. },
  1070. null
  1071. ],
  1072. "slotName": "Vector3: 1",
  1073. "DisplayDataType": {
  1074. "m_type": 8
  1075. },
  1076. "Descriptor": {
  1077. "ConnectionType": 1,
  1078. "SlotType": 2
  1079. },
  1080. "DataType": 1
  1081. },
  1082. {
  1083. "id": {
  1084. "m_id": "{D50E0B3C-DB3B-4DF6-83E1-2B3657AFA0A2}"
  1085. },
  1086. "contracts": [
  1087. {
  1088. "$type": "SlotTypeContract"
  1089. }
  1090. ],
  1091. "slotName": "In",
  1092. "Descriptor": {
  1093. "ConnectionType": 1,
  1094. "SlotType": 1
  1095. }
  1096. },
  1097. {
  1098. "id": {
  1099. "m_id": "{41B58DD9-9878-4EDB-8B9F-B15FA811B533}"
  1100. },
  1101. "contracts": [
  1102. {
  1103. "$type": "SlotTypeContract"
  1104. }
  1105. ],
  1106. "slotName": "Out",
  1107. "Descriptor": {
  1108. "ConnectionType": 2,
  1109. "SlotType": 1
  1110. }
  1111. },
  1112. {
  1113. "IsOverload": true,
  1114. "id": {
  1115. "m_id": "{939EFD5B-709C-4840-8ADD-486B39602DD4}"
  1116. },
  1117. "DynamicTypeOverride": 3,
  1118. "contracts": [
  1119. {
  1120. "$type": "SlotTypeContract"
  1121. }
  1122. ],
  1123. "slotName": "Array<Vector3>",
  1124. "DisplayDataType": {
  1125. "m_type": 4,
  1126. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1127. },
  1128. "Descriptor": {
  1129. "ConnectionType": 2,
  1130. "SlotType": 2
  1131. },
  1132. "DataType": 1
  1133. }
  1134. ],
  1135. "Datums": [
  1136. {
  1137. "scriptCanvasType": {
  1138. "m_type": 4,
  1139. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1140. },
  1141. "isNullPointer": false,
  1142. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  1143. "label": "Array<Vector3>: 0"
  1144. },
  1145. {
  1146. "isOverloadedStorage": false,
  1147. "scriptCanvasType": {
  1148. "m_type": 8
  1149. },
  1150. "isNullPointer": false,
  1151. "$type": "Vector3",
  1152. "value": [
  1153. 0.0,
  1154. 0.0,
  1155. 0.0
  1156. ],
  1157. "label": "Vector3: 1"
  1158. }
  1159. ],
  1160. "methodType": 2,
  1161. "methodName": "Add Element at End",
  1162. "className": "AZStd::vector<Vector3, allocator>",
  1163. "resultSlotIDs": [
  1164. {}
  1165. ],
  1166. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  1167. "orderedInputSlotIds": [
  1168. {
  1169. "m_id": "{7C9AFD33-8E8C-4915-A698-5D2189FDE423}"
  1170. },
  1171. {
  1172. "m_id": "{6C9B2659-658F-413C-A79E-7B5044036C2D}"
  1173. }
  1174. ],
  1175. "outputSlotIds": [
  1176. {
  1177. "m_id": "{939EFD5B-709C-4840-8ADD-486B39602DD4}"
  1178. }
  1179. ]
  1180. }
  1181. }
  1182. },
  1183. {
  1184. "Id": {
  1185. "id": 759248946343
  1186. },
  1187. "Name": "272357792331126",
  1188. "Components": {
  1189. "Component_[14595340322231012620]": {
  1190. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1191. "Id": 14595340322231012620,
  1192. "Slots": [
  1193. {
  1194. "isVisibile": false,
  1195. "id": {
  1196. "m_id": "{B12A91FA-E7E1-4084-8227-C5EEFB2D0AC5}"
  1197. },
  1198. "contracts": [
  1199. {
  1200. "$type": "SlotTypeContract"
  1201. },
  1202. null
  1203. ],
  1204. "slotName": "EntityID: 0",
  1205. "Descriptor": {
  1206. "ConnectionType": 1,
  1207. "SlotType": 2
  1208. },
  1209. "DataType": 1
  1210. },
  1211. {
  1212. "id": {
  1213. "m_id": "{CC181EC6-F7D1-47FD-99EA-34D46C33253B}"
  1214. },
  1215. "contracts": [
  1216. {
  1217. "$type": "SlotTypeContract"
  1218. },
  1219. null
  1220. ],
  1221. "slotName": "Report",
  1222. "toolTip": "additional notes for the test report",
  1223. "DisplayDataType": {
  1224. "m_type": 5
  1225. },
  1226. "Descriptor": {
  1227. "ConnectionType": 1,
  1228. "SlotType": 2
  1229. },
  1230. "DataType": 1
  1231. },
  1232. {
  1233. "id": {
  1234. "m_id": "{8363A0A8-1CB0-43AC-8A67-42C4809F7993}"
  1235. },
  1236. "contracts": [
  1237. {
  1238. "$type": "SlotTypeContract"
  1239. }
  1240. ],
  1241. "slotName": "In",
  1242. "Descriptor": {
  1243. "ConnectionType": 1,
  1244. "SlotType": 1
  1245. }
  1246. },
  1247. {
  1248. "id": {
  1249. "m_id": "{89C7FC95-2994-4B8A-8838-AE8276CE6FB6}"
  1250. },
  1251. "contracts": [
  1252. {
  1253. "$type": "SlotTypeContract"
  1254. }
  1255. ],
  1256. "slotName": "Out",
  1257. "Descriptor": {
  1258. "ConnectionType": 2,
  1259. "SlotType": 1
  1260. }
  1261. }
  1262. ],
  1263. "Datums": [
  1264. {
  1265. "isOverloadedStorage": false,
  1266. "scriptCanvasType": {
  1267. "m_type": 1
  1268. },
  1269. "isNullPointer": false,
  1270. "$type": "EntityId",
  1271. "value": {
  1272. "id": 4276206253
  1273. }
  1274. },
  1275. {
  1276. "isOverloadedStorage": false,
  1277. "scriptCanvasType": {
  1278. "m_type": 5
  1279. },
  1280. "isNullPointer": false,
  1281. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1282. "value": "",
  1283. "label": "Report"
  1284. }
  1285. ],
  1286. "methodType": 2,
  1287. "methodName": "Mark Complete",
  1288. "className": "Unit Testing",
  1289. "resultSlotIDs": [
  1290. {}
  1291. ],
  1292. "prettyClassName": "Unit Testing"
  1293. }
  1294. }
  1295. },
  1296. {
  1297. "Id": {
  1298. "id": 742069077159
  1299. },
  1300. "Name": "SC-Node(Erase)",
  1301. "Components": {
  1302. "Component_[14807513913101943960]": {
  1303. "$type": "MethodOverloaded",
  1304. "Id": 14807513913101943960,
  1305. "Slots": [
  1306. {
  1307. "IsOverload": true,
  1308. "id": {
  1309. "m_id": "{B1B0294D-35F9-4EC9-992F-A35420E73CC9}"
  1310. },
  1311. "DynamicTypeOverride": 3,
  1312. "contracts": [
  1313. {
  1314. "$type": "SlotTypeContract"
  1315. },
  1316. null
  1317. ],
  1318. "slotName": "Array<Vector3>: 0",
  1319. "DisplayDataType": {
  1320. "m_type": 4,
  1321. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1322. },
  1323. "Descriptor": {
  1324. "ConnectionType": 1,
  1325. "SlotType": 2
  1326. },
  1327. "DataType": 1
  1328. },
  1329. {
  1330. "IsOverload": true,
  1331. "id": {
  1332. "m_id": "{863C487A-3A80-4F78-8A1A-425B83BCF4BC}"
  1333. },
  1334. "DynamicTypeOverride": 3,
  1335. "contracts": [
  1336. {
  1337. "$type": "SlotTypeContract"
  1338. },
  1339. null
  1340. ],
  1341. "slotName": "Number: 1",
  1342. "DisplayDataType": {
  1343. "m_type": 3
  1344. },
  1345. "Descriptor": {
  1346. "ConnectionType": 1,
  1347. "SlotType": 2
  1348. },
  1349. "DataType": 1
  1350. },
  1351. {
  1352. "id": {
  1353. "m_id": "{6A88CC04-920F-4DDB-80B3-C5E4DB598678}"
  1354. },
  1355. "contracts": [
  1356. {
  1357. "$type": "SlotTypeContract"
  1358. }
  1359. ],
  1360. "slotName": "In",
  1361. "Descriptor": {
  1362. "ConnectionType": 1,
  1363. "SlotType": 1
  1364. }
  1365. },
  1366. {
  1367. "id": {
  1368. "m_id": "{C3D6FAD6-285F-4D90-B320-423DA4EFAB06}"
  1369. },
  1370. "contracts": [
  1371. {
  1372. "$type": "SlotTypeContract"
  1373. }
  1374. ],
  1375. "slotName": "Out",
  1376. "Descriptor": {
  1377. "ConnectionType": 2,
  1378. "SlotType": 1
  1379. }
  1380. },
  1381. {
  1382. "id": {
  1383. "m_id": "{239D2520-CD00-4349-9BD4-6DC0BAF9996B}"
  1384. },
  1385. "contracts": [
  1386. {
  1387. "$type": "SlotTypeContract"
  1388. }
  1389. ],
  1390. "slotName": "Key Not Found",
  1391. "Descriptor": {
  1392. "ConnectionType": 2,
  1393. "SlotType": 1
  1394. }
  1395. },
  1396. {
  1397. "IsOverload": true,
  1398. "id": {
  1399. "m_id": "{047771D1-F60B-4952-BF6E-B85C8B769D06}"
  1400. },
  1401. "DynamicTypeOverride": 3,
  1402. "contracts": [
  1403. {
  1404. "$type": "SlotTypeContract"
  1405. }
  1406. ],
  1407. "slotName": "Array<Vector3>",
  1408. "DisplayDataType": {
  1409. "m_type": 4,
  1410. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1411. },
  1412. "Descriptor": {
  1413. "ConnectionType": 2,
  1414. "SlotType": 2
  1415. },
  1416. "DataType": 1
  1417. }
  1418. ],
  1419. "Datums": [
  1420. {
  1421. "scriptCanvasType": {
  1422. "m_type": 4,
  1423. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1424. },
  1425. "isNullPointer": false,
  1426. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  1427. "label": "Array<Vector3>: 0"
  1428. },
  1429. {
  1430. "isOverloadedStorage": false,
  1431. "scriptCanvasType": {
  1432. "m_type": 3
  1433. },
  1434. "isNullPointer": false,
  1435. "$type": "double",
  1436. "value": 0.0,
  1437. "label": "Number: 1"
  1438. }
  1439. ],
  1440. "methodType": 2,
  1441. "methodName": "Erase",
  1442. "className": "AZStd::vector<Vector3, allocator>",
  1443. "resultSlotIDs": [
  1444. {}
  1445. ],
  1446. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  1447. "orderedInputSlotIds": [
  1448. {
  1449. "m_id": "{B1B0294D-35F9-4EC9-992F-A35420E73CC9}"
  1450. },
  1451. {
  1452. "m_id": "{863C487A-3A80-4F78-8A1A-425B83BCF4BC}"
  1453. }
  1454. ],
  1455. "outputSlotIds": [
  1456. {
  1457. "m_id": "{047771D1-F60B-4952-BF6E-B85C8B769D06}"
  1458. }
  1459. ]
  1460. }
  1461. }
  1462. },
  1463. {
  1464. "Id": {
  1465. "id": 724889207975
  1466. },
  1467. "Name": "8359037547894",
  1468. "Components": {
  1469. "Component_[1958083073510561140]": {
  1470. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1471. "Id": 1958083073510561140,
  1472. "Slots": [
  1473. {
  1474. "isVisibile": false,
  1475. "id": {
  1476. "m_id": "{4DE73C3A-AFF8-45B9-BB7E-D998BBE2EC94}"
  1477. },
  1478. "contracts": [
  1479. {
  1480. "$type": "SlotTypeContract"
  1481. },
  1482. null
  1483. ],
  1484. "slotName": "EntityID: 0",
  1485. "Descriptor": {
  1486. "ConnectionType": 1,
  1487. "SlotType": 2
  1488. },
  1489. "DataType": 1
  1490. },
  1491. {
  1492. "id": {
  1493. "m_id": "{87EE5131-69EC-43DF-A137-C626E887C5A5}"
  1494. },
  1495. "contracts": [
  1496. {
  1497. "$type": "SlotTypeContract"
  1498. },
  1499. null
  1500. ],
  1501. "slotName": "Report",
  1502. "toolTip": "additional notes for the test report",
  1503. "DisplayDataType": {
  1504. "m_type": 5
  1505. },
  1506. "Descriptor": {
  1507. "ConnectionType": 1,
  1508. "SlotType": 2
  1509. },
  1510. "DataType": 1
  1511. },
  1512. {
  1513. "id": {
  1514. "m_id": "{2486380B-6B4F-4B41-AF3F-CBBCB41AB103}"
  1515. },
  1516. "contracts": [
  1517. {
  1518. "$type": "SlotTypeContract"
  1519. }
  1520. ],
  1521. "slotName": "In",
  1522. "Descriptor": {
  1523. "ConnectionType": 1,
  1524. "SlotType": 1
  1525. }
  1526. },
  1527. {
  1528. "id": {
  1529. "m_id": "{6B8FAF9F-725D-4294-867B-E8AAD93B9FB9}"
  1530. },
  1531. "contracts": [
  1532. {
  1533. "$type": "SlotTypeContract"
  1534. }
  1535. ],
  1536. "slotName": "Out",
  1537. "Descriptor": {
  1538. "ConnectionType": 2,
  1539. "SlotType": 1
  1540. }
  1541. }
  1542. ],
  1543. "Datums": [
  1544. {
  1545. "isOverloadedStorage": false,
  1546. "scriptCanvasType": {
  1547. "m_type": 1
  1548. },
  1549. "isNullPointer": false,
  1550. "$type": "EntityId",
  1551. "value": {
  1552. "id": 4276206253
  1553. }
  1554. },
  1555. {
  1556. "isOverloadedStorage": false,
  1557. "scriptCanvasType": {
  1558. "m_type": 5
  1559. },
  1560. "isNullPointer": false,
  1561. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1562. "value": "at",
  1563. "label": "Report"
  1564. }
  1565. ],
  1566. "methodType": 2,
  1567. "methodName": "Add Failure",
  1568. "className": "Unit Testing",
  1569. "resultSlotIDs": [
  1570. {}
  1571. ],
  1572. "prettyClassName": "Unit Testing"
  1573. }
  1574. }
  1575. },
  1576. {
  1577. "Id": {
  1578. "id": 707709338791
  1579. },
  1580. "Name": "196719123281270",
  1581. "Components": {
  1582. "Component_[2534276197078204048]": {
  1583. "$type": "MethodOverloaded",
  1584. "Id": 2534276197078204048,
  1585. "Slots": [
  1586. {
  1587. "isVisibile": false,
  1588. "id": {
  1589. "m_id": "{85AD04A3-6BC3-4B35-9F95-64F5A2AA82F9}"
  1590. },
  1591. "contracts": [
  1592. {
  1593. "$type": "SlotTypeContract"
  1594. },
  1595. null
  1596. ],
  1597. "slotName": "EntityID: 0",
  1598. "DisplayDataType": {
  1599. "m_type": 1
  1600. },
  1601. "Descriptor": {
  1602. "ConnectionType": 1,
  1603. "SlotType": 2
  1604. },
  1605. "DataType": 1
  1606. },
  1607. {
  1608. "IsOverload": true,
  1609. "id": {
  1610. "m_id": "{451A3B33-6124-4772-A253-8CA7E02982AC}"
  1611. },
  1612. "DynamicTypeOverride": 3,
  1613. "contracts": [
  1614. {
  1615. "$type": "SlotTypeContract"
  1616. },
  1617. null
  1618. ],
  1619. "slotName": "Candidate",
  1620. "toolTip": "left of ==",
  1621. "DisplayDataType": {
  1622. "m_type": 8
  1623. },
  1624. "Descriptor": {
  1625. "ConnectionType": 1,
  1626. "SlotType": 2
  1627. },
  1628. "DataType": 1
  1629. },
  1630. {
  1631. "IsOverload": true,
  1632. "id": {
  1633. "m_id": "{2E7D2193-2BF1-4AAE-80DB-B4B68462E6C2}"
  1634. },
  1635. "DynamicTypeOverride": 3,
  1636. "contracts": [
  1637. {
  1638. "$type": "SlotTypeContract"
  1639. },
  1640. null
  1641. ],
  1642. "slotName": "Reference",
  1643. "toolTip": "right of ==",
  1644. "DisplayDataType": {
  1645. "m_type": 8
  1646. },
  1647. "Descriptor": {
  1648. "ConnectionType": 1,
  1649. "SlotType": 2
  1650. },
  1651. "DataType": 1
  1652. },
  1653. {
  1654. "id": {
  1655. "m_id": "{36FDF1BD-7093-4B88-A3E7-83DEEAC04F71}"
  1656. },
  1657. "contracts": [
  1658. {
  1659. "$type": "SlotTypeContract"
  1660. },
  1661. null
  1662. ],
  1663. "slotName": "Report",
  1664. "toolTip": "additional notes for the test report",
  1665. "DisplayDataType": {
  1666. "m_type": 5
  1667. },
  1668. "Descriptor": {
  1669. "ConnectionType": 1,
  1670. "SlotType": 2
  1671. },
  1672. "DataType": 1
  1673. },
  1674. {
  1675. "id": {
  1676. "m_id": "{14067186-E78A-4EB0-A8BB-0EBCCD78B7FF}"
  1677. },
  1678. "contracts": [
  1679. {
  1680. "$type": "SlotTypeContract"
  1681. }
  1682. ],
  1683. "slotName": "In",
  1684. "Descriptor": {
  1685. "ConnectionType": 1,
  1686. "SlotType": 1
  1687. }
  1688. },
  1689. {
  1690. "id": {
  1691. "m_id": "{10ABA7D0-6DE8-4F83-B594-3788D8A62C7A}"
  1692. },
  1693. "contracts": [
  1694. {
  1695. "$type": "SlotTypeContract"
  1696. }
  1697. ],
  1698. "slotName": "Out",
  1699. "Descriptor": {
  1700. "ConnectionType": 2,
  1701. "SlotType": 1
  1702. }
  1703. }
  1704. ],
  1705. "Datums": [
  1706. {
  1707. "isOverloadedStorage": false,
  1708. "scriptCanvasType": {
  1709. "m_type": 1
  1710. },
  1711. "isNullPointer": false,
  1712. "$type": "EntityId",
  1713. "value": {
  1714. "id": 4276206253
  1715. }
  1716. },
  1717. {
  1718. "isOverloadedStorage": false,
  1719. "scriptCanvasType": {
  1720. "m_type": 8
  1721. },
  1722. "isNullPointer": false,
  1723. "$type": "Vector3",
  1724. "value": [
  1725. 0.0,
  1726. 0.0,
  1727. 0.0
  1728. ],
  1729. "label": "Candidate"
  1730. },
  1731. {
  1732. "isOverloadedStorage": false,
  1733. "scriptCanvasType": {
  1734. "m_type": 8
  1735. },
  1736. "isNullPointer": false,
  1737. "$type": "Vector3",
  1738. "value": [
  1739. 0.0,
  1740. 0.0,
  1741. 0.0
  1742. ],
  1743. "label": "Reference"
  1744. },
  1745. {
  1746. "isOverloadedStorage": false,
  1747. "scriptCanvasType": {
  1748. "m_type": 5
  1749. },
  1750. "isNullPointer": false,
  1751. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1752. "value": "at",
  1753. "label": "Report"
  1754. }
  1755. ],
  1756. "methodType": 2,
  1757. "methodName": "Expect Equal",
  1758. "className": "Unit Testing",
  1759. "resultSlotIDs": [
  1760. {}
  1761. ],
  1762. "prettyClassName": "Unit Testing",
  1763. "orderedInputSlotIds": [
  1764. {
  1765. "m_id": "{85AD04A3-6BC3-4B35-9F95-64F5A2AA82F9}"
  1766. },
  1767. {
  1768. "m_id": "{451A3B33-6124-4772-A253-8CA7E02982AC}"
  1769. },
  1770. {
  1771. "m_id": "{2E7D2193-2BF1-4AAE-80DB-B4B68462E6C2}"
  1772. },
  1773. {
  1774. "m_id": "{36FDF1BD-7093-4B88-A3E7-83DEEAC04F71}"
  1775. }
  1776. ],
  1777. "outputSlotIds": [
  1778. {}
  1779. ]
  1780. }
  1781. }
  1782. },
  1783. {
  1784. "Id": {
  1785. "id": 690529469607
  1786. },
  1787. "Name": "SC-Node(Get Last Element)",
  1788. "Components": {
  1789. "Component_[345446505255267434]": {
  1790. "$type": "MethodOverloaded",
  1791. "Id": 345446505255267434,
  1792. "Slots": [
  1793. {
  1794. "IsOverload": true,
  1795. "id": {
  1796. "m_id": "{6D716DEB-11D8-4263-A8A1-D2884EBF29CD}"
  1797. },
  1798. "DynamicTypeOverride": 3,
  1799. "contracts": [
  1800. {
  1801. "$type": "SlotTypeContract"
  1802. },
  1803. null
  1804. ],
  1805. "slotName": "Array<Vector3>: 0",
  1806. "DisplayDataType": {
  1807. "m_type": 4,
  1808. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1809. },
  1810. "Descriptor": {
  1811. "ConnectionType": 1,
  1812. "SlotType": 2
  1813. },
  1814. "DataType": 1
  1815. },
  1816. {
  1817. "id": {
  1818. "m_id": "{F54AC675-95B6-4CB7-A549-AEB57C3B2E87}"
  1819. },
  1820. "contracts": [
  1821. {
  1822. "$type": "SlotTypeContract"
  1823. }
  1824. ],
  1825. "slotName": "In",
  1826. "Descriptor": {
  1827. "ConnectionType": 1,
  1828. "SlotType": 1
  1829. }
  1830. },
  1831. {
  1832. "id": {
  1833. "m_id": "{BBEAE551-68D3-4994-9EDF-23902506EE96}"
  1834. },
  1835. "contracts": [
  1836. {
  1837. "$type": "SlotTypeContract"
  1838. }
  1839. ],
  1840. "slotName": "Out",
  1841. "Descriptor": {
  1842. "ConnectionType": 2,
  1843. "SlotType": 1
  1844. }
  1845. },
  1846. {
  1847. "id": {
  1848. "m_id": "{5BA9E487-0DAE-4AAE-9E05-319AAD7F8DF3}"
  1849. },
  1850. "contracts": [
  1851. {
  1852. "$type": "SlotTypeContract"
  1853. }
  1854. ],
  1855. "slotName": "Empty",
  1856. "Descriptor": {
  1857. "ConnectionType": 2,
  1858. "SlotType": 1
  1859. }
  1860. },
  1861. {
  1862. "IsOverload": true,
  1863. "id": {
  1864. "m_id": "{E5352552-EA64-48C7-A56C-97A6572121B6}"
  1865. },
  1866. "DynamicTypeOverride": 3,
  1867. "contracts": [
  1868. {
  1869. "$type": "SlotTypeContract"
  1870. }
  1871. ],
  1872. "slotName": "Vector3",
  1873. "DisplayDataType": {
  1874. "m_type": 8
  1875. },
  1876. "Descriptor": {
  1877. "ConnectionType": 2,
  1878. "SlotType": 2
  1879. },
  1880. "DataType": 1
  1881. }
  1882. ],
  1883. "Datums": [
  1884. {
  1885. "scriptCanvasType": {
  1886. "m_type": 4,
  1887. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  1888. },
  1889. "isNullPointer": false,
  1890. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  1891. "label": "Array<Vector3>: 0"
  1892. }
  1893. ],
  1894. "methodType": 2,
  1895. "methodName": "Get Last Element",
  1896. "className": "AZStd::vector<Vector3, allocator>",
  1897. "resultSlotIDs": [
  1898. {}
  1899. ],
  1900. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  1901. "orderedInputSlotIds": [
  1902. {
  1903. "m_id": "{6D716DEB-11D8-4263-A8A1-D2884EBF29CD}"
  1904. }
  1905. ],
  1906. "outputSlotIds": [
  1907. {
  1908. "m_id": "{E5352552-EA64-48C7-A56C-97A6572121B6}"
  1909. }
  1910. ]
  1911. }
  1912. }
  1913. },
  1914. {
  1915. "Id": {
  1916. "id": 673349600423
  1917. },
  1918. "Name": "163789609022838",
  1919. "Components": {
  1920. "Component_[4577024463880167668]": {
  1921. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1922. "Id": 4577024463880167668,
  1923. "Slots": [
  1924. {
  1925. "isVisibile": false,
  1926. "id": {
  1927. "m_id": "{08718BF8-1E2A-4032-9E7E-4FDAC457547B}"
  1928. },
  1929. "contracts": [
  1930. {
  1931. "$type": "SlotTypeContract"
  1932. },
  1933. null
  1934. ],
  1935. "slotName": "EntityID: 0",
  1936. "Descriptor": {
  1937. "ConnectionType": 1,
  1938. "SlotType": 2
  1939. },
  1940. "DataType": 1
  1941. },
  1942. {
  1943. "id": {
  1944. "m_id": "{6E74197F-DB1E-4EEC-87F8-74274E601F3E}"
  1945. },
  1946. "contracts": [
  1947. {
  1948. "$type": "SlotTypeContract"
  1949. },
  1950. null
  1951. ],
  1952. "slotName": "Report",
  1953. "toolTip": "additional notes for the test report",
  1954. "DisplayDataType": {
  1955. "m_type": 5
  1956. },
  1957. "Descriptor": {
  1958. "ConnectionType": 1,
  1959. "SlotType": 2
  1960. },
  1961. "DataType": 1
  1962. },
  1963. {
  1964. "id": {
  1965. "m_id": "{9364BE04-3D87-46C3-97E3-7B79018C995D}"
  1966. },
  1967. "contracts": [
  1968. {
  1969. "$type": "SlotTypeContract"
  1970. }
  1971. ],
  1972. "slotName": "In",
  1973. "Descriptor": {
  1974. "ConnectionType": 1,
  1975. "SlotType": 1
  1976. }
  1977. },
  1978. {
  1979. "id": {
  1980. "m_id": "{4DEB7E73-436E-43F8-B3B8-0C0BAE015D0F}"
  1981. },
  1982. "contracts": [
  1983. {
  1984. "$type": "SlotTypeContract"
  1985. }
  1986. ],
  1987. "slotName": "Out",
  1988. "Descriptor": {
  1989. "ConnectionType": 2,
  1990. "SlotType": 1
  1991. }
  1992. }
  1993. ],
  1994. "Datums": [
  1995. {
  1996. "isOverloadedStorage": false,
  1997. "scriptCanvasType": {
  1998. "m_type": 1
  1999. },
  2000. "isNullPointer": false,
  2001. "$type": "EntityId",
  2002. "value": {
  2003. "id": 4276206253
  2004. }
  2005. },
  2006. {
  2007. "isOverloadedStorage": false,
  2008. "scriptCanvasType": {
  2009. "m_type": 5
  2010. },
  2011. "isNullPointer": false,
  2012. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  2013. "value": "replace",
  2014. "label": "Report"
  2015. }
  2016. ],
  2017. "methodType": 2,
  2018. "methodName": "Add Failure",
  2019. "className": "Unit Testing",
  2020. "resultSlotIDs": [
  2021. {}
  2022. ],
  2023. "prettyClassName": "Unit Testing"
  2024. }
  2025. }
  2026. },
  2027. {
  2028. "Id": {
  2029. "id": 656169731239
  2030. },
  2031. "Name": "SC-Node(Add Element at End)",
  2032. "Components": {
  2033. "Component_[4685408949780690246]": {
  2034. "$type": "MethodOverloaded",
  2035. "Id": 4685408949780690246,
  2036. "Slots": [
  2037. {
  2038. "IsOverload": true,
  2039. "id": {
  2040. "m_id": "{A1ABD911-1327-4E5A-BE04-A02E93765FFC}"
  2041. },
  2042. "DynamicTypeOverride": 3,
  2043. "contracts": [
  2044. {
  2045. "$type": "SlotTypeContract"
  2046. },
  2047. null
  2048. ],
  2049. "slotName": "Array<Vector3>: 0",
  2050. "DisplayDataType": {
  2051. "m_type": 4,
  2052. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2053. },
  2054. "Descriptor": {
  2055. "ConnectionType": 1,
  2056. "SlotType": 2
  2057. },
  2058. "DataType": 1
  2059. },
  2060. {
  2061. "IsOverload": true,
  2062. "id": {
  2063. "m_id": "{3015B90A-5204-4BFE-BF83-51F9365A795F}"
  2064. },
  2065. "DynamicTypeOverride": 3,
  2066. "contracts": [
  2067. {
  2068. "$type": "SlotTypeContract"
  2069. },
  2070. null
  2071. ],
  2072. "slotName": "Vector3: 1",
  2073. "DisplayDataType": {
  2074. "m_type": 8
  2075. },
  2076. "Descriptor": {
  2077. "ConnectionType": 1,
  2078. "SlotType": 2
  2079. },
  2080. "DataType": 1
  2081. },
  2082. {
  2083. "id": {
  2084. "m_id": "{53844F35-0BEB-42B0-9782-68C48689F45F}"
  2085. },
  2086. "contracts": [
  2087. {
  2088. "$type": "SlotTypeContract"
  2089. }
  2090. ],
  2091. "slotName": "In",
  2092. "Descriptor": {
  2093. "ConnectionType": 1,
  2094. "SlotType": 1
  2095. }
  2096. },
  2097. {
  2098. "id": {
  2099. "m_id": "{FA35E2EC-9280-4B78-86F4-AEF60E229905}"
  2100. },
  2101. "contracts": [
  2102. {
  2103. "$type": "SlotTypeContract"
  2104. }
  2105. ],
  2106. "slotName": "Out",
  2107. "Descriptor": {
  2108. "ConnectionType": 2,
  2109. "SlotType": 1
  2110. }
  2111. },
  2112. {
  2113. "IsOverload": true,
  2114. "id": {
  2115. "m_id": "{44643B97-0E34-4C5F-A912-184DDF29CEA1}"
  2116. },
  2117. "DynamicTypeOverride": 3,
  2118. "contracts": [
  2119. {
  2120. "$type": "SlotTypeContract"
  2121. }
  2122. ],
  2123. "slotName": "Array<Vector3>",
  2124. "DisplayDataType": {
  2125. "m_type": 4,
  2126. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2127. },
  2128. "Descriptor": {
  2129. "ConnectionType": 2,
  2130. "SlotType": 2
  2131. },
  2132. "DataType": 1
  2133. }
  2134. ],
  2135. "Datums": [
  2136. {
  2137. "scriptCanvasType": {
  2138. "m_type": 4,
  2139. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2140. },
  2141. "isNullPointer": false,
  2142. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  2143. "label": "Array<Vector3>: 0"
  2144. },
  2145. {
  2146. "isOverloadedStorage": false,
  2147. "scriptCanvasType": {
  2148. "m_type": 8
  2149. },
  2150. "isNullPointer": false,
  2151. "$type": "Vector3",
  2152. "value": [
  2153. 0.0,
  2154. 0.0,
  2155. 0.0
  2156. ],
  2157. "label": "Vector3: 1"
  2158. }
  2159. ],
  2160. "methodType": 2,
  2161. "methodName": "Add Element at End",
  2162. "className": "AZStd::vector<Vector3, allocator>",
  2163. "resultSlotIDs": [
  2164. {}
  2165. ],
  2166. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  2167. "orderedInputSlotIds": [
  2168. {
  2169. "m_id": "{A1ABD911-1327-4E5A-BE04-A02E93765FFC}"
  2170. },
  2171. {
  2172. "m_id": "{3015B90A-5204-4BFE-BF83-51F9365A795F}"
  2173. }
  2174. ],
  2175. "outputSlotIds": [
  2176. {
  2177. "m_id": "{44643B97-0E34-4C5F-A912-184DDF29CEA1}"
  2178. }
  2179. ]
  2180. }
  2181. }
  2182. },
  2183. {
  2184. "Id": {
  2185. "id": 763543913639
  2186. },
  2187. "Name": "SC-Node(ForEach)",
  2188. "Components": {
  2189. "Component_[4724264930106500865]": {
  2190. "$type": "ForEach",
  2191. "Id": 4724264930106500865,
  2192. "Slots": [
  2193. {
  2194. "id": {
  2195. "m_id": "{D4CDDB68-B750-4502-937E-58EC9C952032}"
  2196. },
  2197. "DynamicTypeOverride": 2,
  2198. "contracts": [
  2199. {
  2200. "$type": "SlotTypeContract"
  2201. },
  2202. null
  2203. ],
  2204. "slotName": "Source",
  2205. "DisplayDataType": {
  2206. "m_type": 4,
  2207. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2208. },
  2209. "Descriptor": {
  2210. "ConnectionType": 1,
  2211. "SlotType": 2
  2212. },
  2213. "DynamicGroup": {
  2214. "Value": 3089028177
  2215. },
  2216. "DataType": 1
  2217. },
  2218. {
  2219. "id": {
  2220. "m_id": "{905F53A7-0D04-4DE6-9AD2-15CD1ECF7EF2}"
  2221. },
  2222. "contracts": [
  2223. {
  2224. "$type": "SlotTypeContract"
  2225. }
  2226. ],
  2227. "slotName": "In",
  2228. "toolTip": "Signaled upon node entry",
  2229. "Descriptor": {
  2230. "ConnectionType": 1,
  2231. "SlotType": 1
  2232. }
  2233. },
  2234. {
  2235. "id": {
  2236. "m_id": "{10F80746-EEAA-448E-A713-CD6A60EF9986}"
  2237. },
  2238. "contracts": [
  2239. {
  2240. "$type": "SlotTypeContract"
  2241. }
  2242. ],
  2243. "slotName": "Break",
  2244. "toolTip": "Stops the iteration when signaled",
  2245. "Descriptor": {
  2246. "ConnectionType": 1,
  2247. "SlotType": 1
  2248. }
  2249. },
  2250. {
  2251. "id": {
  2252. "m_id": "{ADED928B-1E2A-4B4B-83B3-7CC2A5D4482F}"
  2253. },
  2254. "contracts": [
  2255. {
  2256. "$type": "SlotTypeContract"
  2257. }
  2258. ],
  2259. "slotName": "Each",
  2260. "toolTip": "Signalled after each element of the container",
  2261. "Descriptor": {
  2262. "ConnectionType": 2,
  2263. "SlotType": 1
  2264. }
  2265. },
  2266. {
  2267. "id": {
  2268. "m_id": "{90BDD07B-7858-4F0D-971A-3307157E616B}"
  2269. },
  2270. "contracts": [
  2271. {
  2272. "$type": "SlotTypeContract"
  2273. }
  2274. ],
  2275. "slotName": "Finished",
  2276. "toolTip": "The container has been fully iterated over",
  2277. "Descriptor": {
  2278. "ConnectionType": 2,
  2279. "SlotType": 1
  2280. }
  2281. },
  2282. {
  2283. "id": {
  2284. "m_id": "{19ECC66C-07B6-451F-BE05-815BC34A12F2}"
  2285. },
  2286. "contracts": [
  2287. {
  2288. "$type": "SlotTypeContract"
  2289. }
  2290. ],
  2291. "slotName": "Vector3",
  2292. "DisplayDataType": {
  2293. "m_type": 8
  2294. },
  2295. "Descriptor": {
  2296. "ConnectionType": 2,
  2297. "SlotType": 2
  2298. },
  2299. "DataType": 1
  2300. }
  2301. ],
  2302. "Datums": [
  2303. {
  2304. "scriptCanvasType": {
  2305. "m_type": 4,
  2306. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2307. },
  2308. "isNullPointer": false,
  2309. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  2310. "label": "Source"
  2311. }
  2312. ],
  2313. "m_sourceSlot": {
  2314. "m_id": "{D4CDDB68-B750-4502-937E-58EC9C952032}"
  2315. },
  2316. "m_previousTypeId": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}",
  2317. "m_propertySlots": [
  2318. {
  2319. "m_propertySlotId": {
  2320. "m_id": "{19ECC66C-07B6-451F-BE05-815BC34A12F2}"
  2321. },
  2322. "m_propertyType": {
  2323. "m_type": 8
  2324. },
  2325. "m_propertyName": "Vector3"
  2326. }
  2327. ]
  2328. }
  2329. }
  2330. },
  2331. {
  2332. "Id": {
  2333. "id": 746364044455
  2334. },
  2335. "Name": "SC Node(GetVariable)",
  2336. "Components": {
  2337. "Component_[5004888801858053578]": {
  2338. "$type": "GetVariableNode",
  2339. "Id": 5004888801858053578,
  2340. "Slots": [
  2341. {
  2342. "id": {
  2343. "m_id": "{372416EA-E828-433F-90FC-2FFAC7B520E4}"
  2344. },
  2345. "contracts": [
  2346. {
  2347. "$type": "SlotTypeContract"
  2348. }
  2349. ],
  2350. "slotName": "In",
  2351. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2352. "Descriptor": {
  2353. "ConnectionType": 1,
  2354. "SlotType": 1
  2355. }
  2356. },
  2357. {
  2358. "id": {
  2359. "m_id": "{09103F3A-CF7F-4865-A1AD-8F09C54CF828}"
  2360. },
  2361. "contracts": [
  2362. {
  2363. "$type": "SlotTypeContract"
  2364. }
  2365. ],
  2366. "slotName": "Out",
  2367. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2368. "Descriptor": {
  2369. "ConnectionType": 2,
  2370. "SlotType": 1
  2371. }
  2372. },
  2373. {
  2374. "id": {
  2375. "m_id": "{7849FBC7-0A9D-488B-AA57-7AD13FCE166A}"
  2376. },
  2377. "contracts": [
  2378. {
  2379. "$type": "SlotTypeContract"
  2380. }
  2381. ],
  2382. "slotName": "Vector3",
  2383. "DisplayDataType": {
  2384. "m_type": 8
  2385. },
  2386. "Descriptor": {
  2387. "ConnectionType": 2,
  2388. "SlotType": 2
  2389. },
  2390. "DataType": 1
  2391. },
  2392. {
  2393. "id": {
  2394. "m_id": "{B1F61FDE-661E-4DAD-B524-5F08B1B8AC9B}"
  2395. },
  2396. "contracts": [
  2397. {
  2398. "$type": "SlotTypeContract"
  2399. }
  2400. ],
  2401. "slotName": "x: Number",
  2402. "DisplayDataType": {
  2403. "m_type": 3
  2404. },
  2405. "Descriptor": {
  2406. "ConnectionType": 2,
  2407. "SlotType": 2
  2408. },
  2409. "DataType": 1
  2410. },
  2411. {
  2412. "id": {
  2413. "m_id": "{1B706120-9E60-4892-9913-795890D8E146}"
  2414. },
  2415. "contracts": [
  2416. {
  2417. "$type": "SlotTypeContract"
  2418. }
  2419. ],
  2420. "slotName": "y: Number",
  2421. "DisplayDataType": {
  2422. "m_type": 3
  2423. },
  2424. "Descriptor": {
  2425. "ConnectionType": 2,
  2426. "SlotType": 2
  2427. },
  2428. "DataType": 1
  2429. },
  2430. {
  2431. "id": {
  2432. "m_id": "{835773F8-6E82-44FB-A794-0646B55C2926}"
  2433. },
  2434. "contracts": [
  2435. {
  2436. "$type": "SlotTypeContract"
  2437. }
  2438. ],
  2439. "slotName": "z: Number",
  2440. "DisplayDataType": {
  2441. "m_type": 3
  2442. },
  2443. "Descriptor": {
  2444. "ConnectionType": 2,
  2445. "SlotType": 2
  2446. },
  2447. "DataType": 1
  2448. }
  2449. ],
  2450. "m_variableId": {
  2451. "m_id": "{0DDB6D19-D5E8-48F5-B9E1-B58E58A645D6}"
  2452. },
  2453. "m_variableDataOutSlotId": {
  2454. "m_id": "{7849FBC7-0A9D-488B-AA57-7AD13FCE166A}"
  2455. },
  2456. "m_propertyAccounts": [
  2457. {
  2458. "m_propertySlotId": {
  2459. "m_id": "{B1F61FDE-661E-4DAD-B524-5F08B1B8AC9B}"
  2460. },
  2461. "m_propertyType": {
  2462. "m_type": 3
  2463. },
  2464. "m_propertyName": "x"
  2465. },
  2466. {
  2467. "m_propertySlotId": {
  2468. "m_id": "{1B706120-9E60-4892-9913-795890D8E146}"
  2469. },
  2470. "m_propertyType": {
  2471. "m_type": 3
  2472. },
  2473. "m_propertyName": "y"
  2474. },
  2475. {
  2476. "m_propertySlotId": {
  2477. "m_id": "{835773F8-6E82-44FB-A794-0646B55C2926}"
  2478. },
  2479. "m_propertyType": {
  2480. "m_type": 3
  2481. },
  2482. "m_propertyName": "z"
  2483. }
  2484. ]
  2485. }
  2486. }
  2487. },
  2488. {
  2489. "Id": {
  2490. "id": 729184175271
  2491. },
  2492. "Name": "SC Node(GetVariable)",
  2493. "Components": {
  2494. "Component_[5086405642066707781]": {
  2495. "$type": "GetVariableNode",
  2496. "Id": 5086405642066707781,
  2497. "Slots": [
  2498. {
  2499. "id": {
  2500. "m_id": "{FFA13EB8-FB85-42CE-B1A1-746AEF37B35C}"
  2501. },
  2502. "contracts": [
  2503. {
  2504. "$type": "SlotTypeContract"
  2505. }
  2506. ],
  2507. "slotName": "In",
  2508. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2509. "Descriptor": {
  2510. "ConnectionType": 1,
  2511. "SlotType": 1
  2512. }
  2513. },
  2514. {
  2515. "id": {
  2516. "m_id": "{C0E74D23-33C9-4A82-B879-9035FBF584AC}"
  2517. },
  2518. "contracts": [
  2519. {
  2520. "$type": "SlotTypeContract"
  2521. }
  2522. ],
  2523. "slotName": "Out",
  2524. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2525. "Descriptor": {
  2526. "ConnectionType": 2,
  2527. "SlotType": 1
  2528. }
  2529. },
  2530. {
  2531. "id": {
  2532. "m_id": "{83271F0B-0DB9-4414-A12F-FF39D3B585AE}"
  2533. },
  2534. "contracts": [
  2535. {
  2536. "$type": "SlotTypeContract"
  2537. }
  2538. ],
  2539. "slotName": "Array<Vector3>",
  2540. "DisplayDataType": {
  2541. "m_type": 4,
  2542. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2543. },
  2544. "Descriptor": {
  2545. "ConnectionType": 2,
  2546. "SlotType": 2
  2547. },
  2548. "DataType": 1
  2549. }
  2550. ],
  2551. "m_variableId": {
  2552. "m_id": "{E0F9077A-317E-4482-B2A1-3C75DBD013DD}"
  2553. },
  2554. "m_variableDataOutSlotId": {
  2555. "m_id": "{83271F0B-0DB9-4414-A12F-FF39D3B585AE}"
  2556. }
  2557. }
  2558. }
  2559. },
  2560. {
  2561. "Id": {
  2562. "id": 712004306087
  2563. },
  2564. "Name": "SC Node(GetVariable)",
  2565. "Components": {
  2566. "Component_[5678075248765944366]": {
  2567. "$type": "GetVariableNode",
  2568. "Id": 5678075248765944366,
  2569. "Slots": [
  2570. {
  2571. "id": {
  2572. "m_id": "{59114053-5EA6-43F5-8CF8-F83E57410A27}"
  2573. },
  2574. "contracts": [
  2575. {
  2576. "$type": "SlotTypeContract"
  2577. }
  2578. ],
  2579. "slotName": "In",
  2580. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2581. "Descriptor": {
  2582. "ConnectionType": 1,
  2583. "SlotType": 1
  2584. }
  2585. },
  2586. {
  2587. "id": {
  2588. "m_id": "{ABB69248-5F61-4663-B739-7A12C2A0CE4B}"
  2589. },
  2590. "contracts": [
  2591. {
  2592. "$type": "SlotTypeContract"
  2593. }
  2594. ],
  2595. "slotName": "Out",
  2596. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2597. "Descriptor": {
  2598. "ConnectionType": 2,
  2599. "SlotType": 1
  2600. }
  2601. },
  2602. {
  2603. "id": {
  2604. "m_id": "{E2D9A2CA-408E-4D89-9CF1-7A95A93B7EFB}"
  2605. },
  2606. "contracts": [
  2607. {
  2608. "$type": "SlotTypeContract"
  2609. }
  2610. ],
  2611. "slotName": "Vector3",
  2612. "DisplayDataType": {
  2613. "m_type": 8
  2614. },
  2615. "Descriptor": {
  2616. "ConnectionType": 2,
  2617. "SlotType": 2
  2618. },
  2619. "DataType": 1
  2620. },
  2621. {
  2622. "id": {
  2623. "m_id": "{D4AE3E7D-1165-4F85-B2CF-9E93BAF76BE4}"
  2624. },
  2625. "contracts": [
  2626. {
  2627. "$type": "SlotTypeContract"
  2628. }
  2629. ],
  2630. "slotName": "x: Number",
  2631. "DisplayDataType": {
  2632. "m_type": 3
  2633. },
  2634. "Descriptor": {
  2635. "ConnectionType": 2,
  2636. "SlotType": 2
  2637. },
  2638. "DataType": 1
  2639. },
  2640. {
  2641. "id": {
  2642. "m_id": "{08855718-E4B4-4255-AEFB-F483F15F68A6}"
  2643. },
  2644. "contracts": [
  2645. {
  2646. "$type": "SlotTypeContract"
  2647. }
  2648. ],
  2649. "slotName": "y: Number",
  2650. "DisplayDataType": {
  2651. "m_type": 3
  2652. },
  2653. "Descriptor": {
  2654. "ConnectionType": 2,
  2655. "SlotType": 2
  2656. },
  2657. "DataType": 1
  2658. },
  2659. {
  2660. "id": {
  2661. "m_id": "{742F9271-8E55-4FAD-A203-85D37C4CF33D}"
  2662. },
  2663. "contracts": [
  2664. {
  2665. "$type": "SlotTypeContract"
  2666. }
  2667. ],
  2668. "slotName": "z: Number",
  2669. "DisplayDataType": {
  2670. "m_type": 3
  2671. },
  2672. "Descriptor": {
  2673. "ConnectionType": 2,
  2674. "SlotType": 2
  2675. },
  2676. "DataType": 1
  2677. }
  2678. ],
  2679. "m_variableId": {
  2680. "m_id": "{AC1C6FC0-6C3D-42DF-999E-94621CAC1A58}"
  2681. },
  2682. "m_variableDataOutSlotId": {
  2683. "m_id": "{E2D9A2CA-408E-4D89-9CF1-7A95A93B7EFB}"
  2684. },
  2685. "m_propertyAccounts": [
  2686. {
  2687. "m_propertySlotId": {
  2688. "m_id": "{D4AE3E7D-1165-4F85-B2CF-9E93BAF76BE4}"
  2689. },
  2690. "m_propertyType": {
  2691. "m_type": 3
  2692. },
  2693. "m_propertyName": "x"
  2694. },
  2695. {
  2696. "m_propertySlotId": {
  2697. "m_id": "{08855718-E4B4-4255-AEFB-F483F15F68A6}"
  2698. },
  2699. "m_propertyType": {
  2700. "m_type": 3
  2701. },
  2702. "m_propertyName": "y"
  2703. },
  2704. {
  2705. "m_propertySlotId": {
  2706. "m_id": "{742F9271-8E55-4FAD-A203-85D37C4CF33D}"
  2707. },
  2708. "m_propertyType": {
  2709. "m_type": 3
  2710. },
  2711. "m_propertyName": "z"
  2712. }
  2713. ]
  2714. }
  2715. }
  2716. },
  2717. {
  2718. "Id": {
  2719. "id": 694824436903
  2720. },
  2721. "Name": "SC-Node(Get Element)",
  2722. "Components": {
  2723. "Component_[571418536781272694]": {
  2724. "$type": "MethodOverloaded",
  2725. "Id": 571418536781272694,
  2726. "Slots": [
  2727. {
  2728. "IsOverload": true,
  2729. "id": {
  2730. "m_id": "{E0B3102A-5968-4BA8-AEAA-DE5C380F4899}"
  2731. },
  2732. "DynamicTypeOverride": 3,
  2733. "contracts": [
  2734. {
  2735. "$type": "SlotTypeContract"
  2736. },
  2737. null
  2738. ],
  2739. "slotName": "Array<Vector3>: 0",
  2740. "DisplayDataType": {
  2741. "m_type": 4,
  2742. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2743. },
  2744. "Descriptor": {
  2745. "ConnectionType": 1,
  2746. "SlotType": 2
  2747. },
  2748. "DataType": 1
  2749. },
  2750. {
  2751. "IsOverload": true,
  2752. "id": {
  2753. "m_id": "{094F495B-FF9E-46B8-9D79-B024B08B5474}"
  2754. },
  2755. "DynamicTypeOverride": 3,
  2756. "contracts": [
  2757. {
  2758. "$type": "SlotTypeContract"
  2759. },
  2760. null
  2761. ],
  2762. "slotName": "Index",
  2763. "toolTip": "The index to read from",
  2764. "DisplayDataType": {
  2765. "m_type": 3
  2766. },
  2767. "Descriptor": {
  2768. "ConnectionType": 1,
  2769. "SlotType": 2
  2770. },
  2771. "DataType": 1
  2772. },
  2773. {
  2774. "id": {
  2775. "m_id": "{A09A13A0-99AB-4D32-AEDC-C6784D9DCF80}"
  2776. },
  2777. "contracts": [
  2778. {
  2779. "$type": "SlotTypeContract"
  2780. }
  2781. ],
  2782. "slotName": "In",
  2783. "Descriptor": {
  2784. "ConnectionType": 1,
  2785. "SlotType": 1
  2786. }
  2787. },
  2788. {
  2789. "id": {
  2790. "m_id": "{0C6B77AB-7C08-48F7-BB31-E8FACA6DF6F3}"
  2791. },
  2792. "contracts": [
  2793. {
  2794. "$type": "SlotTypeContract"
  2795. }
  2796. ],
  2797. "slotName": "Out",
  2798. "Descriptor": {
  2799. "ConnectionType": 2,
  2800. "SlotType": 1
  2801. }
  2802. },
  2803. {
  2804. "id": {
  2805. "m_id": "{355CE16E-14EC-4DD0-8B28-1C45E2980410}"
  2806. },
  2807. "contracts": [
  2808. {
  2809. "$type": "SlotTypeContract"
  2810. }
  2811. ],
  2812. "slotName": "Key Not Found",
  2813. "Descriptor": {
  2814. "ConnectionType": 2,
  2815. "SlotType": 1
  2816. }
  2817. },
  2818. {
  2819. "IsOverload": true,
  2820. "id": {
  2821. "m_id": "{8FD3F66D-9008-4756-8DBD-80E8EC37BFCE}"
  2822. },
  2823. "DynamicTypeOverride": 3,
  2824. "contracts": [
  2825. {
  2826. "$type": "SlotTypeContract"
  2827. }
  2828. ],
  2829. "slotName": "Vector3",
  2830. "DisplayDataType": {
  2831. "m_type": 8
  2832. },
  2833. "Descriptor": {
  2834. "ConnectionType": 2,
  2835. "SlotType": 2
  2836. },
  2837. "DataType": 1
  2838. }
  2839. ],
  2840. "Datums": [
  2841. {
  2842. "scriptCanvasType": {
  2843. "m_type": 4,
  2844. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2845. },
  2846. "isNullPointer": false,
  2847. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  2848. "label": "Array<Vector3>: 0"
  2849. },
  2850. {
  2851. "isOverloadedStorage": false,
  2852. "scriptCanvasType": {
  2853. "m_type": 3
  2854. },
  2855. "isNullPointer": false,
  2856. "$type": "double",
  2857. "value": 90.0,
  2858. "label": "Index"
  2859. }
  2860. ],
  2861. "methodType": 2,
  2862. "methodName": "Get Element",
  2863. "className": "AZStd::vector<Vector3, allocator>",
  2864. "resultSlotIDs": [
  2865. {}
  2866. ],
  2867. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  2868. "orderedInputSlotIds": [
  2869. {
  2870. "m_id": "{E0B3102A-5968-4BA8-AEAA-DE5C380F4899}"
  2871. },
  2872. {
  2873. "m_id": "{094F495B-FF9E-46B8-9D79-B024B08B5474}"
  2874. }
  2875. ],
  2876. "outputSlotIds": [
  2877. {
  2878. "m_id": "{8FD3F66D-9008-4756-8DBD-80E8EC37BFCE}"
  2879. }
  2880. ]
  2881. }
  2882. }
  2883. },
  2884. {
  2885. "Id": {
  2886. "id": 677644567719
  2887. },
  2888. "Name": "SC Node(GetVariable)",
  2889. "Components": {
  2890. "Component_[7327885352268725683]": {
  2891. "$type": "GetVariableNode",
  2892. "Id": 7327885352268725683,
  2893. "Slots": [
  2894. {
  2895. "id": {
  2896. "m_id": "{77BF6EBB-EFE6-4546-BF02-767D94357310}"
  2897. },
  2898. "contracts": [
  2899. {
  2900. "$type": "SlotTypeContract"
  2901. }
  2902. ],
  2903. "slotName": "In",
  2904. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2905. "Descriptor": {
  2906. "ConnectionType": 1,
  2907. "SlotType": 1
  2908. }
  2909. },
  2910. {
  2911. "id": {
  2912. "m_id": "{60D7DF4E-8C2A-4147-99FC-056DE344B705}"
  2913. },
  2914. "contracts": [
  2915. {
  2916. "$type": "SlotTypeContract"
  2917. }
  2918. ],
  2919. "slotName": "Out",
  2920. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2921. "Descriptor": {
  2922. "ConnectionType": 2,
  2923. "SlotType": 1
  2924. }
  2925. },
  2926. {
  2927. "id": {
  2928. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  2929. },
  2930. "contracts": [
  2931. {
  2932. "$type": "SlotTypeContract"
  2933. }
  2934. ],
  2935. "slotName": "Array<Vector3>",
  2936. "DisplayDataType": {
  2937. "m_type": 4,
  2938. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  2939. },
  2940. "Descriptor": {
  2941. "ConnectionType": 2,
  2942. "SlotType": 2
  2943. },
  2944. "DataType": 1
  2945. }
  2946. ],
  2947. "m_variableId": {
  2948. "m_id": "{BC1352F5-DECD-495E-B354-9FD0D76F30D2}"
  2949. },
  2950. "m_variableDataOutSlotId": {
  2951. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  2952. }
  2953. }
  2954. }
  2955. },
  2956. {
  2957. "Id": {
  2958. "id": 660464698535
  2959. },
  2960. "Name": "1899406734710",
  2961. "Components": {
  2962. "Component_[8067308629153412546]": {
  2963. "$type": "Start",
  2964. "Id": 8067308629153412546,
  2965. "Slots": [
  2966. {
  2967. "id": {
  2968. "m_id": "{2EA8EDB4-9842-439F-8B64-DDAD67B9B186}"
  2969. },
  2970. "contracts": [
  2971. {
  2972. "$type": "SlotTypeContract"
  2973. }
  2974. ],
  2975. "slotName": "Out",
  2976. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  2977. "Descriptor": {
  2978. "ConnectionType": 2,
  2979. "SlotType": 1
  2980. }
  2981. }
  2982. ]
  2983. }
  2984. }
  2985. },
  2986. {
  2987. "Id": {
  2988. "id": 767838880935
  2989. },
  2990. "Name": "163789609022838",
  2991. "Components": {
  2992. "Component_[8168404651319472618]": {
  2993. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2994. "Id": 8168404651319472618,
  2995. "Slots": [
  2996. {
  2997. "isVisibile": false,
  2998. "id": {
  2999. "m_id": "{4ED3832A-3B29-475A-89BB-F29B6052A507}"
  3000. },
  3001. "contracts": [
  3002. {
  3003. "$type": "SlotTypeContract"
  3004. },
  3005. null
  3006. ],
  3007. "slotName": "EntityID: 0",
  3008. "Descriptor": {
  3009. "ConnectionType": 1,
  3010. "SlotType": 2
  3011. },
  3012. "DataType": 1
  3013. },
  3014. {
  3015. "id": {
  3016. "m_id": "{B0663489-F5B3-420C-AD9F-F2D01372DCDC}"
  3017. },
  3018. "contracts": [
  3019. {
  3020. "$type": "SlotTypeContract"
  3021. },
  3022. null
  3023. ],
  3024. "slotName": "Report",
  3025. "toolTip": "additional notes for the test report",
  3026. "DisplayDataType": {
  3027. "m_type": 5
  3028. },
  3029. "Descriptor": {
  3030. "ConnectionType": 1,
  3031. "SlotType": 2
  3032. },
  3033. "DataType": 1
  3034. },
  3035. {
  3036. "id": {
  3037. "m_id": "{CD902879-1C95-4611-AD23-0A1E13B72812}"
  3038. },
  3039. "contracts": [
  3040. {
  3041. "$type": "SlotTypeContract"
  3042. }
  3043. ],
  3044. "slotName": "In",
  3045. "Descriptor": {
  3046. "ConnectionType": 1,
  3047. "SlotType": 1
  3048. }
  3049. },
  3050. {
  3051. "id": {
  3052. "m_id": "{D405B24A-DE96-4915-A6D0-7405169D99D0}"
  3053. },
  3054. "contracts": [
  3055. {
  3056. "$type": "SlotTypeContract"
  3057. }
  3058. ],
  3059. "slotName": "Out",
  3060. "Descriptor": {
  3061. "ConnectionType": 2,
  3062. "SlotType": 1
  3063. }
  3064. }
  3065. ],
  3066. "Datums": [
  3067. {
  3068. "isOverloadedStorage": false,
  3069. "scriptCanvasType": {
  3070. "m_type": 1
  3071. },
  3072. "isNullPointer": false,
  3073. "$type": "EntityId",
  3074. "value": {
  3075. "id": 4276206253
  3076. }
  3077. },
  3078. {
  3079. "isOverloadedStorage": false,
  3080. "scriptCanvasType": {
  3081. "m_type": 5
  3082. },
  3083. "isNullPointer": false,
  3084. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3085. "value": "at",
  3086. "label": "Report"
  3087. }
  3088. ],
  3089. "methodType": 2,
  3090. "methodName": "Add Failure",
  3091. "className": "Unit Testing",
  3092. "resultSlotIDs": [
  3093. {}
  3094. ],
  3095. "prettyClassName": "Unit Testing"
  3096. }
  3097. }
  3098. },
  3099. {
  3100. "Id": {
  3101. "id": 750659011751
  3102. },
  3103. "Name": "93249066153334",
  3104. "Components": {
  3105. "Component_[8282111915002409682]": {
  3106. "$type": "MethodOverloaded",
  3107. "Id": 8282111915002409682,
  3108. "Slots": [
  3109. {
  3110. "isVisibile": false,
  3111. "id": {
  3112. "m_id": "{C23948A0-E9A3-4742-9BDB-32F75E212697}"
  3113. },
  3114. "contracts": [
  3115. {
  3116. "$type": "SlotTypeContract"
  3117. },
  3118. null
  3119. ],
  3120. "slotName": "EntityID: 0",
  3121. "DisplayDataType": {
  3122. "m_type": 1
  3123. },
  3124. "Descriptor": {
  3125. "ConnectionType": 1,
  3126. "SlotType": 2
  3127. },
  3128. "DataType": 1
  3129. },
  3130. {
  3131. "IsOverload": true,
  3132. "id": {
  3133. "m_id": "{7B499B7E-BF3B-4AD4-8D4C-5D21779866EE}"
  3134. },
  3135. "DynamicTypeOverride": 3,
  3136. "contracts": [
  3137. {
  3138. "$type": "SlotTypeContract"
  3139. },
  3140. null
  3141. ],
  3142. "slotName": "Candidate",
  3143. "toolTip": "left of ==",
  3144. "DisplayDataType": {
  3145. "m_type": 8
  3146. },
  3147. "Descriptor": {
  3148. "ConnectionType": 1,
  3149. "SlotType": 2
  3150. },
  3151. "DataType": 1
  3152. },
  3153. {
  3154. "IsOverload": true,
  3155. "id": {
  3156. "m_id": "{2381009C-2DEE-436D-A649-B1978C6D84A1}"
  3157. },
  3158. "DynamicTypeOverride": 3,
  3159. "contracts": [
  3160. {
  3161. "$type": "SlotTypeContract"
  3162. },
  3163. null
  3164. ],
  3165. "slotName": "Reference",
  3166. "toolTip": "right of ==",
  3167. "DisplayDataType": {
  3168. "m_type": 8
  3169. },
  3170. "Descriptor": {
  3171. "ConnectionType": 1,
  3172. "SlotType": 2
  3173. },
  3174. "DataType": 1
  3175. },
  3176. {
  3177. "id": {
  3178. "m_id": "{5F2F11BF-6490-48B8-AAD6-6B5733E24088}"
  3179. },
  3180. "contracts": [
  3181. {
  3182. "$type": "SlotTypeContract"
  3183. },
  3184. null
  3185. ],
  3186. "slotName": "Report",
  3187. "toolTip": "additional notes for the test report",
  3188. "DisplayDataType": {
  3189. "m_type": 5
  3190. },
  3191. "Descriptor": {
  3192. "ConnectionType": 1,
  3193. "SlotType": 2
  3194. },
  3195. "DataType": 1
  3196. },
  3197. {
  3198. "id": {
  3199. "m_id": "{1877ADDF-C98B-4A3F-9141-51F8BAEE0F76}"
  3200. },
  3201. "contracts": [
  3202. {
  3203. "$type": "SlotTypeContract"
  3204. }
  3205. ],
  3206. "slotName": "In",
  3207. "Descriptor": {
  3208. "ConnectionType": 1,
  3209. "SlotType": 1
  3210. }
  3211. },
  3212. {
  3213. "id": {
  3214. "m_id": "{50885CCE-BE77-403B-AECF-03D940A46D6F}"
  3215. },
  3216. "contracts": [
  3217. {
  3218. "$type": "SlotTypeContract"
  3219. }
  3220. ],
  3221. "slotName": "Out",
  3222. "Descriptor": {
  3223. "ConnectionType": 2,
  3224. "SlotType": 1
  3225. }
  3226. }
  3227. ],
  3228. "Datums": [
  3229. {
  3230. "isOverloadedStorage": false,
  3231. "scriptCanvasType": {
  3232. "m_type": 1
  3233. },
  3234. "isNullPointer": false,
  3235. "$type": "EntityId",
  3236. "value": {
  3237. "id": 4276206253
  3238. }
  3239. },
  3240. {
  3241. "isOverloadedStorage": false,
  3242. "scriptCanvasType": {
  3243. "m_type": 8
  3244. },
  3245. "isNullPointer": false,
  3246. "$type": "Vector3",
  3247. "value": [
  3248. 0.0,
  3249. 0.0,
  3250. 0.0
  3251. ],
  3252. "label": "Candidate"
  3253. },
  3254. {
  3255. "isOverloadedStorage": false,
  3256. "scriptCanvasType": {
  3257. "m_type": 8
  3258. },
  3259. "isNullPointer": false,
  3260. "$type": "Vector3",
  3261. "value": [
  3262. 0.0,
  3263. 0.0,
  3264. 0.0
  3265. ],
  3266. "label": "Reference"
  3267. },
  3268. {
  3269. "isOverloadedStorage": false,
  3270. "scriptCanvasType": {
  3271. "m_type": 5
  3272. },
  3273. "isNullPointer": false,
  3274. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3275. "value": "At equal",
  3276. "label": "Report"
  3277. }
  3278. ],
  3279. "methodType": 2,
  3280. "methodName": "Expect Equal",
  3281. "className": "Unit Testing",
  3282. "resultSlotIDs": [
  3283. {}
  3284. ],
  3285. "prettyClassName": "Unit Testing",
  3286. "orderedInputSlotIds": [
  3287. {
  3288. "m_id": "{C23948A0-E9A3-4742-9BDB-32F75E212697}"
  3289. },
  3290. {
  3291. "m_id": "{7B499B7E-BF3B-4AD4-8D4C-5D21779866EE}"
  3292. },
  3293. {
  3294. "m_id": "{2381009C-2DEE-436D-A649-B1978C6D84A1}"
  3295. },
  3296. {
  3297. "m_id": "{5F2F11BF-6490-48B8-AAD6-6B5733E24088}"
  3298. }
  3299. ],
  3300. "outputSlotIds": [
  3301. {}
  3302. ]
  3303. }
  3304. }
  3305. },
  3306. {
  3307. "Id": {
  3308. "id": 733479142567
  3309. },
  3310. "Name": "SC-Node(Get Element)",
  3311. "Components": {
  3312. "Component_[8487943013140658961]": {
  3313. "$type": "MethodOverloaded",
  3314. "Id": 8487943013140658961,
  3315. "Slots": [
  3316. {
  3317. "IsOverload": true,
  3318. "id": {
  3319. "m_id": "{68C06744-4BFE-403B-97C7-32DDC048BCED}"
  3320. },
  3321. "DynamicTypeOverride": 3,
  3322. "contracts": [
  3323. {
  3324. "$type": "SlotTypeContract"
  3325. },
  3326. null
  3327. ],
  3328. "slotName": "Array<Vector3>: 0",
  3329. "DisplayDataType": {
  3330. "m_type": 4,
  3331. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3332. },
  3333. "Descriptor": {
  3334. "ConnectionType": 1,
  3335. "SlotType": 2
  3336. },
  3337. "DataType": 1
  3338. },
  3339. {
  3340. "IsOverload": true,
  3341. "id": {
  3342. "m_id": "{E4782B87-5985-48FA-AA3A-BE8AAA3D826E}"
  3343. },
  3344. "DynamicTypeOverride": 3,
  3345. "contracts": [
  3346. {
  3347. "$type": "SlotTypeContract"
  3348. },
  3349. null
  3350. ],
  3351. "slotName": "Index",
  3352. "toolTip": "The index to read from",
  3353. "DisplayDataType": {
  3354. "m_type": 3
  3355. },
  3356. "Descriptor": {
  3357. "ConnectionType": 1,
  3358. "SlotType": 2
  3359. },
  3360. "DataType": 1
  3361. },
  3362. {
  3363. "id": {
  3364. "m_id": "{AE8F8089-4A15-47D1-B435-CDDF886344DC}"
  3365. },
  3366. "contracts": [
  3367. {
  3368. "$type": "SlotTypeContract"
  3369. }
  3370. ],
  3371. "slotName": "In",
  3372. "Descriptor": {
  3373. "ConnectionType": 1,
  3374. "SlotType": 1
  3375. }
  3376. },
  3377. {
  3378. "id": {
  3379. "m_id": "{97A0B8FA-F471-4FF8-BAB8-E9833AEBF940}"
  3380. },
  3381. "contracts": [
  3382. {
  3383. "$type": "SlotTypeContract"
  3384. }
  3385. ],
  3386. "slotName": "Out",
  3387. "Descriptor": {
  3388. "ConnectionType": 2,
  3389. "SlotType": 1
  3390. }
  3391. },
  3392. {
  3393. "id": {
  3394. "m_id": "{44146B5F-8CFE-4899-9E67-7E11D0D817CA}"
  3395. },
  3396. "contracts": [
  3397. {
  3398. "$type": "SlotTypeContract"
  3399. }
  3400. ],
  3401. "slotName": "Key Not Found",
  3402. "Descriptor": {
  3403. "ConnectionType": 2,
  3404. "SlotType": 1
  3405. }
  3406. },
  3407. {
  3408. "IsOverload": true,
  3409. "id": {
  3410. "m_id": "{CFE24AC3-F3B8-4D8C-AF55-CBFD76DC8432}"
  3411. },
  3412. "DynamicTypeOverride": 3,
  3413. "contracts": [
  3414. {
  3415. "$type": "SlotTypeContract"
  3416. }
  3417. ],
  3418. "slotName": "Vector3",
  3419. "DisplayDataType": {
  3420. "m_type": 8
  3421. },
  3422. "Descriptor": {
  3423. "ConnectionType": 2,
  3424. "SlotType": 2
  3425. },
  3426. "DataType": 1
  3427. }
  3428. ],
  3429. "Datums": [
  3430. {
  3431. "scriptCanvasType": {
  3432. "m_type": 4,
  3433. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3434. },
  3435. "isNullPointer": false,
  3436. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  3437. "label": "Array<Vector3>: 0"
  3438. },
  3439. {
  3440. "isOverloadedStorage": false,
  3441. "scriptCanvasType": {
  3442. "m_type": 3
  3443. },
  3444. "isNullPointer": false,
  3445. "$type": "double",
  3446. "value": 0.0,
  3447. "label": "Index"
  3448. }
  3449. ],
  3450. "methodType": 2,
  3451. "methodName": "Get Element",
  3452. "className": "AZStd::vector<Vector3, allocator>",
  3453. "resultSlotIDs": [
  3454. {}
  3455. ],
  3456. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  3457. "orderedInputSlotIds": [
  3458. {
  3459. "m_id": "{68C06744-4BFE-403B-97C7-32DDC048BCED}"
  3460. },
  3461. {
  3462. "m_id": "{E4782B87-5985-48FA-AA3A-BE8AAA3D826E}"
  3463. }
  3464. ],
  3465. "outputSlotIds": [
  3466. {
  3467. "m_id": "{CFE24AC3-F3B8-4D8C-AF55-CBFD76DC8432}"
  3468. }
  3469. ]
  3470. }
  3471. }
  3472. },
  3473. {
  3474. "Id": {
  3475. "id": 716299273383
  3476. },
  3477. "Name": "SC-Node(Add Element at End)",
  3478. "Components": {
  3479. "Component_[8501501847676708490]": {
  3480. "$type": "MethodOverloaded",
  3481. "Id": 8501501847676708490,
  3482. "Slots": [
  3483. {
  3484. "IsOverload": true,
  3485. "id": {
  3486. "m_id": "{1B3EB254-C097-4425-8560-A2220BFF6566}"
  3487. },
  3488. "DynamicTypeOverride": 3,
  3489. "contracts": [
  3490. {
  3491. "$type": "SlotTypeContract"
  3492. },
  3493. null
  3494. ],
  3495. "slotName": "Array<Vector3>: 0",
  3496. "DisplayDataType": {
  3497. "m_type": 4,
  3498. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3499. },
  3500. "Descriptor": {
  3501. "ConnectionType": 1,
  3502. "SlotType": 2
  3503. },
  3504. "DataType": 1
  3505. },
  3506. {
  3507. "IsOverload": true,
  3508. "id": {
  3509. "m_id": "{17A7A6D0-47F2-441A-9BD1-0D48CA0B14A1}"
  3510. },
  3511. "DynamicTypeOverride": 3,
  3512. "contracts": [
  3513. {
  3514. "$type": "SlotTypeContract"
  3515. },
  3516. null
  3517. ],
  3518. "slotName": "Vector3: 1",
  3519. "DisplayDataType": {
  3520. "m_type": 8
  3521. },
  3522. "Descriptor": {
  3523. "ConnectionType": 1,
  3524. "SlotType": 2
  3525. },
  3526. "DataType": 1
  3527. },
  3528. {
  3529. "id": {
  3530. "m_id": "{85B18E67-179F-4003-A183-AEC320FD7EC5}"
  3531. },
  3532. "contracts": [
  3533. {
  3534. "$type": "SlotTypeContract"
  3535. }
  3536. ],
  3537. "slotName": "In",
  3538. "Descriptor": {
  3539. "ConnectionType": 1,
  3540. "SlotType": 1
  3541. }
  3542. },
  3543. {
  3544. "id": {
  3545. "m_id": "{19C48E17-BDA2-4FA5-BBB2-B285FD932A67}"
  3546. },
  3547. "contracts": [
  3548. {
  3549. "$type": "SlotTypeContract"
  3550. }
  3551. ],
  3552. "slotName": "Out",
  3553. "Descriptor": {
  3554. "ConnectionType": 2,
  3555. "SlotType": 1
  3556. }
  3557. },
  3558. {
  3559. "IsOverload": true,
  3560. "id": {
  3561. "m_id": "{E3F3A0A4-FA5E-47FD-A622-4E8370007A06}"
  3562. },
  3563. "DynamicTypeOverride": 3,
  3564. "contracts": [
  3565. {
  3566. "$type": "SlotTypeContract"
  3567. }
  3568. ],
  3569. "slotName": "Array<Vector3>",
  3570. "DisplayDataType": {
  3571. "m_type": 4,
  3572. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3573. },
  3574. "Descriptor": {
  3575. "ConnectionType": 2,
  3576. "SlotType": 2
  3577. },
  3578. "DataType": 1
  3579. }
  3580. ],
  3581. "Datums": [
  3582. {
  3583. "scriptCanvasType": {
  3584. "m_type": 4,
  3585. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3586. },
  3587. "isNullPointer": false,
  3588. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  3589. "label": "Array<Vector3>: 0"
  3590. },
  3591. {
  3592. "isOverloadedStorage": false,
  3593. "scriptCanvasType": {
  3594. "m_type": 8
  3595. },
  3596. "isNullPointer": false,
  3597. "$type": "Vector3",
  3598. "value": [
  3599. 0.0,
  3600. 0.0,
  3601. 0.0
  3602. ],
  3603. "label": "Vector3: 1"
  3604. }
  3605. ],
  3606. "methodType": 2,
  3607. "methodName": "Add Element at End",
  3608. "className": "AZStd::vector<Vector3, allocator>",
  3609. "resultSlotIDs": [
  3610. {}
  3611. ],
  3612. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  3613. "orderedInputSlotIds": [
  3614. {
  3615. "m_id": "{1B3EB254-C097-4425-8560-A2220BFF6566}"
  3616. },
  3617. {
  3618. "m_id": "{17A7A6D0-47F2-441A-9BD1-0D48CA0B14A1}"
  3619. }
  3620. ],
  3621. "outputSlotIds": [
  3622. {
  3623. "m_id": "{E3F3A0A4-FA5E-47FD-A622-4E8370007A06}"
  3624. }
  3625. ]
  3626. }
  3627. }
  3628. },
  3629. {
  3630. "Id": {
  3631. "id": 699119404199
  3632. },
  3633. "Name": "SC-Node(Insert)",
  3634. "Components": {
  3635. "Component_[8902212721050968558]": {
  3636. "$type": "MethodOverloaded",
  3637. "Id": 8902212721050968558,
  3638. "Slots": [
  3639. {
  3640. "IsOverload": true,
  3641. "id": {
  3642. "m_id": "{30E9774E-AD52-4FAB-9734-4C7F28261406}"
  3643. },
  3644. "DynamicTypeOverride": 3,
  3645. "contracts": [
  3646. {
  3647. "$type": "SlotTypeContract"
  3648. },
  3649. null
  3650. ],
  3651. "slotName": "Array<Vector3>: 0",
  3652. "DisplayDataType": {
  3653. "m_type": 4,
  3654. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3655. },
  3656. "Descriptor": {
  3657. "ConnectionType": 1,
  3658. "SlotType": 2
  3659. },
  3660. "DataType": 1
  3661. },
  3662. {
  3663. "IsOverload": true,
  3664. "id": {
  3665. "m_id": "{81616600-B3EF-4CCD-9EDD-83D001B71FDD}"
  3666. },
  3667. "DynamicTypeOverride": 3,
  3668. "contracts": [
  3669. {
  3670. "$type": "SlotTypeContract"
  3671. },
  3672. null
  3673. ],
  3674. "slotName": "Index",
  3675. "toolTip": "The index at which to insert the value",
  3676. "DisplayDataType": {
  3677. "m_type": 3
  3678. },
  3679. "Descriptor": {
  3680. "ConnectionType": 1,
  3681. "SlotType": 2
  3682. },
  3683. "DataType": 1
  3684. },
  3685. {
  3686. "IsOverload": true,
  3687. "id": {
  3688. "m_id": "{08EDD53A-AEF2-440F-AB1E-AA6194B0AF00}"
  3689. },
  3690. "DynamicTypeOverride": 3,
  3691. "contracts": [
  3692. {
  3693. "$type": "SlotTypeContract"
  3694. },
  3695. null
  3696. ],
  3697. "slotName": "Vector3: 2",
  3698. "DisplayDataType": {
  3699. "m_type": 8
  3700. },
  3701. "Descriptor": {
  3702. "ConnectionType": 1,
  3703. "SlotType": 2
  3704. },
  3705. "DataType": 1
  3706. },
  3707. {
  3708. "id": {
  3709. "m_id": "{67565EA0-2134-49C9-BEEE-38278AE4339B}"
  3710. },
  3711. "contracts": [
  3712. {
  3713. "$type": "SlotTypeContract"
  3714. }
  3715. ],
  3716. "slotName": "In",
  3717. "Descriptor": {
  3718. "ConnectionType": 1,
  3719. "SlotType": 1
  3720. }
  3721. },
  3722. {
  3723. "id": {
  3724. "m_id": "{5E6D007D-A147-4113-97EE-AE2F0DE28A1B}"
  3725. },
  3726. "contracts": [
  3727. {
  3728. "$type": "SlotTypeContract"
  3729. }
  3730. ],
  3731. "slotName": "Out",
  3732. "Descriptor": {
  3733. "ConnectionType": 2,
  3734. "SlotType": 1
  3735. }
  3736. },
  3737. {
  3738. "IsOverload": true,
  3739. "id": {
  3740. "m_id": "{E92759A1-61F9-4634-A941-EAB473943548}"
  3741. },
  3742. "DynamicTypeOverride": 3,
  3743. "contracts": [
  3744. {
  3745. "$type": "SlotTypeContract"
  3746. }
  3747. ],
  3748. "slotName": "Array<Vector3>",
  3749. "DisplayDataType": {
  3750. "m_type": 4,
  3751. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3752. },
  3753. "Descriptor": {
  3754. "ConnectionType": 2,
  3755. "SlotType": 2
  3756. },
  3757. "DataType": 1
  3758. }
  3759. ],
  3760. "Datums": [
  3761. {
  3762. "scriptCanvasType": {
  3763. "m_type": 4,
  3764. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  3765. },
  3766. "isNullPointer": false,
  3767. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  3768. "label": "Array<Vector3>: 0"
  3769. },
  3770. {
  3771. "isOverloadedStorage": false,
  3772. "scriptCanvasType": {
  3773. "m_type": 3
  3774. },
  3775. "isNullPointer": false,
  3776. "$type": "double",
  3777. "value": 0.0,
  3778. "label": "Index"
  3779. },
  3780. {
  3781. "isOverloadedStorage": false,
  3782. "scriptCanvasType": {
  3783. "m_type": 8
  3784. },
  3785. "isNullPointer": false,
  3786. "$type": "Vector3",
  3787. "value": [
  3788. 0.0,
  3789. 0.0,
  3790. 0.0
  3791. ],
  3792. "label": "Vector3: 2"
  3793. }
  3794. ],
  3795. "methodType": 2,
  3796. "methodName": "Insert",
  3797. "className": "AZStd::vector<Vector3, allocator>",
  3798. "resultSlotIDs": [
  3799. {}
  3800. ],
  3801. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  3802. "orderedInputSlotIds": [
  3803. {
  3804. "m_id": "{30E9774E-AD52-4FAB-9734-4C7F28261406}"
  3805. },
  3806. {
  3807. "m_id": "{81616600-B3EF-4CCD-9EDD-83D001B71FDD}"
  3808. },
  3809. {
  3810. "m_id": "{08EDD53A-AEF2-440F-AB1E-AA6194B0AF00}"
  3811. }
  3812. ],
  3813. "outputSlotIds": [
  3814. {
  3815. "m_id": "{E92759A1-61F9-4634-A941-EAB473943548}"
  3816. }
  3817. ]
  3818. }
  3819. }
  3820. },
  3821. {
  3822. "Id": {
  3823. "id": 681939535015
  3824. },
  3825. "Name": "94486016734582",
  3826. "Components": {
  3827. "Component_[8981952791947872278]": {
  3828. "$type": "MethodOverloaded",
  3829. "Id": 8981952791947872278,
  3830. "Slots": [
  3831. {
  3832. "isVisibile": false,
  3833. "id": {
  3834. "m_id": "{2C911675-BAEA-4EDC-823E-6E44EDAEF5B4}"
  3835. },
  3836. "contracts": [
  3837. {
  3838. "$type": "SlotTypeContract"
  3839. },
  3840. null
  3841. ],
  3842. "slotName": "EntityID: 0",
  3843. "DisplayDataType": {
  3844. "m_type": 1
  3845. },
  3846. "Descriptor": {
  3847. "ConnectionType": 1,
  3848. "SlotType": 2
  3849. },
  3850. "DataType": 1
  3851. },
  3852. {
  3853. "IsOverload": true,
  3854. "id": {
  3855. "m_id": "{BB5CA306-429E-49ED-9C78-4317045EFC84}"
  3856. },
  3857. "DynamicTypeOverride": 3,
  3858. "contracts": [
  3859. {
  3860. "$type": "SlotTypeContract"
  3861. },
  3862. null
  3863. ],
  3864. "slotName": "Candidate",
  3865. "toolTip": "left of ==",
  3866. "DisplayDataType": {
  3867. "m_type": 8
  3868. },
  3869. "Descriptor": {
  3870. "ConnectionType": 1,
  3871. "SlotType": 2
  3872. },
  3873. "DataType": 1
  3874. },
  3875. {
  3876. "IsOverload": true,
  3877. "id": {
  3878. "m_id": "{73A104E0-364A-4B20-B7BF-5604B9546C51}"
  3879. },
  3880. "DynamicTypeOverride": 3,
  3881. "contracts": [
  3882. {
  3883. "$type": "SlotTypeContract"
  3884. },
  3885. null
  3886. ],
  3887. "slotName": "Reference",
  3888. "toolTip": "right of ==",
  3889. "DisplayDataType": {
  3890. "m_type": 8
  3891. },
  3892. "Descriptor": {
  3893. "ConnectionType": 1,
  3894. "SlotType": 2
  3895. },
  3896. "DataType": 1
  3897. },
  3898. {
  3899. "id": {
  3900. "m_id": "{00A74CFA-53C7-4E75-B243-E8C42EFF0251}"
  3901. },
  3902. "contracts": [
  3903. {
  3904. "$type": "SlotTypeContract"
  3905. },
  3906. null
  3907. ],
  3908. "slotName": "Report",
  3909. "toolTip": "additional notes for the test report",
  3910. "DisplayDataType": {
  3911. "m_type": 5
  3912. },
  3913. "Descriptor": {
  3914. "ConnectionType": 1,
  3915. "SlotType": 2
  3916. },
  3917. "DataType": 1
  3918. },
  3919. {
  3920. "id": {
  3921. "m_id": "{2E7B8745-5B4C-4602-990E-75BF7A42FE89}"
  3922. },
  3923. "contracts": [
  3924. {
  3925. "$type": "SlotTypeContract"
  3926. }
  3927. ],
  3928. "slotName": "In",
  3929. "Descriptor": {
  3930. "ConnectionType": 1,
  3931. "SlotType": 1
  3932. }
  3933. },
  3934. {
  3935. "id": {
  3936. "m_id": "{982C2784-D626-4D0D-992C-09D22BCF8CD7}"
  3937. },
  3938. "contracts": [
  3939. {
  3940. "$type": "SlotTypeContract"
  3941. }
  3942. ],
  3943. "slotName": "Out",
  3944. "Descriptor": {
  3945. "ConnectionType": 2,
  3946. "SlotType": 1
  3947. }
  3948. }
  3949. ],
  3950. "Datums": [
  3951. {
  3952. "isOverloadedStorage": false,
  3953. "scriptCanvasType": {
  3954. "m_type": 1
  3955. },
  3956. "isNullPointer": false,
  3957. "$type": "EntityId",
  3958. "value": {
  3959. "id": 4276206253
  3960. }
  3961. },
  3962. {
  3963. "isOverloadedStorage": false,
  3964. "scriptCanvasType": {
  3965. "m_type": 8
  3966. },
  3967. "isNullPointer": false,
  3968. "$type": "Vector3",
  3969. "value": [
  3970. 0.0,
  3971. 0.0,
  3972. 0.0
  3973. ],
  3974. "label": "Candidate"
  3975. },
  3976. {
  3977. "isOverloadedStorage": false,
  3978. "scriptCanvasType": {
  3979. "m_type": 8
  3980. },
  3981. "isNullPointer": false,
  3982. "$type": "Vector3",
  3983. "value": [
  3984. 0.0,
  3985. 0.0,
  3986. 0.0
  3987. ],
  3988. "label": "Reference"
  3989. },
  3990. {
  3991. "isOverloadedStorage": false,
  3992. "scriptCanvasType": {
  3993. "m_type": 5
  3994. },
  3995. "isNullPointer": false,
  3996. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  3997. "value": "front equal",
  3998. "label": "Report"
  3999. }
  4000. ],
  4001. "methodType": 2,
  4002. "methodName": "Expect Equal",
  4003. "className": "Unit Testing",
  4004. "resultSlotIDs": [
  4005. {}
  4006. ],
  4007. "prettyClassName": "Unit Testing",
  4008. "orderedInputSlotIds": [
  4009. {
  4010. "m_id": "{2C911675-BAEA-4EDC-823E-6E44EDAEF5B4}"
  4011. },
  4012. {
  4013. "m_id": "{BB5CA306-429E-49ED-9C78-4317045EFC84}"
  4014. },
  4015. {
  4016. "m_id": "{73A104E0-364A-4B20-B7BF-5604B9546C51}"
  4017. },
  4018. {
  4019. "m_id": "{00A74CFA-53C7-4E75-B243-E8C42EFF0251}"
  4020. }
  4021. ],
  4022. "outputSlotIds": [
  4023. {}
  4024. ]
  4025. }
  4026. }
  4027. },
  4028. {
  4029. "Id": {
  4030. "id": 664759665831
  4031. },
  4032. "Name": "SC-Node(Get Size)",
  4033. "Components": {
  4034. "Component_[9124996270455345694]": {
  4035. "$type": "MethodOverloaded",
  4036. "Id": 9124996270455345694,
  4037. "Slots": [
  4038. {
  4039. "IsOverload": true,
  4040. "id": {
  4041. "m_id": "{2FF0EE0A-04CA-4F49-9202-30C049FCDD3F}"
  4042. },
  4043. "DynamicTypeOverride": 3,
  4044. "contracts": [
  4045. {
  4046. "$type": "SlotTypeContract"
  4047. },
  4048. null
  4049. ],
  4050. "slotName": "Array<Vector3>: 0",
  4051. "DisplayDataType": {
  4052. "m_type": 4,
  4053. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  4054. },
  4055. "Descriptor": {
  4056. "ConnectionType": 1,
  4057. "SlotType": 2
  4058. },
  4059. "DataType": 1
  4060. },
  4061. {
  4062. "id": {
  4063. "m_id": "{0D1EE757-1D39-4A52-AFE8-7211338AF8E6}"
  4064. },
  4065. "contracts": [
  4066. {
  4067. "$type": "SlotTypeContract"
  4068. }
  4069. ],
  4070. "slotName": "In",
  4071. "Descriptor": {
  4072. "ConnectionType": 1,
  4073. "SlotType": 1
  4074. }
  4075. },
  4076. {
  4077. "id": {
  4078. "m_id": "{C9F63428-D0A5-43B7-9252-0359C094AF43}"
  4079. },
  4080. "contracts": [
  4081. {
  4082. "$type": "SlotTypeContract"
  4083. }
  4084. ],
  4085. "slotName": "Out",
  4086. "Descriptor": {
  4087. "ConnectionType": 2,
  4088. "SlotType": 1
  4089. }
  4090. },
  4091. {
  4092. "id": {
  4093. "m_id": "{AB0FA3B7-B8C0-44E2-A5CB-8D297B11D480}"
  4094. },
  4095. "contracts": [
  4096. {
  4097. "$type": "SlotTypeContract"
  4098. }
  4099. ],
  4100. "slotName": "Result: Number",
  4101. "DisplayDataType": {
  4102. "m_type": 3
  4103. },
  4104. "Descriptor": {
  4105. "ConnectionType": 2,
  4106. "SlotType": 2
  4107. },
  4108. "DataType": 1
  4109. }
  4110. ],
  4111. "Datums": [
  4112. {
  4113. "scriptCanvasType": {
  4114. "m_type": 4,
  4115. "m_azType": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7}"
  4116. },
  4117. "isNullPointer": false,
  4118. "$type": "{4599647A-45DD-585B-AFC0-4BAD29EB49A7} AZStd::vector<Vector3, allocator>",
  4119. "label": "Array<Vector3>: 0"
  4120. }
  4121. ],
  4122. "methodType": 2,
  4123. "methodName": "Get Size",
  4124. "className": "AZStd::vector<Vector3, allocator>",
  4125. "resultSlotIDs": [
  4126. {}
  4127. ],
  4128. "prettyClassName": "AZStd::vector<Vector3, allocator>",
  4129. "orderedInputSlotIds": [
  4130. {
  4131. "m_id": "{2FF0EE0A-04CA-4F49-9202-30C049FCDD3F}"
  4132. }
  4133. ],
  4134. "outputSlotIds": [
  4135. {
  4136. "m_id": "{AB0FA3B7-B8C0-44E2-A5CB-8D297B11D480}"
  4137. }
  4138. ]
  4139. }
  4140. }
  4141. }
  4142. ],
  4143. "m_connections": [
  4144. {
  4145. "Id": {
  4146. "id": 772133848231
  4147. },
  4148. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  4149. "Components": {
  4150. "Component_[2647288888877272318]": {
  4151. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4152. "Id": 2647288888877272318,
  4153. "sourceEndpoint": {
  4154. "nodeId": {
  4155. "id": 660464698535
  4156. },
  4157. "slotId": {
  4158. "m_id": "{2EA8EDB4-9842-439F-8B64-DDAD67B9B186}"
  4159. }
  4160. },
  4161. "targetEndpoint": {
  4162. "nodeId": {
  4163. "id": 712004306087
  4164. },
  4165. "slotId": {
  4166. "m_id": "{59114053-5EA6-43F5-8CF8-F83E57410A27}"
  4167. }
  4168. }
  4169. }
  4170. }
  4171. },
  4172. {
  4173. "Id": {
  4174. "id": 776428815527
  4175. },
  4176. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(Expect Equal: Candidate)",
  4177. "Components": {
  4178. "Component_[14487677785953728610]": {
  4179. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4180. "Id": 14487677785953728610,
  4181. "sourceEndpoint": {
  4182. "nodeId": {
  4183. "id": 712004306087
  4184. },
  4185. "slotId": {
  4186. "m_id": "{E2D9A2CA-408E-4D89-9CF1-7A95A93B7EFB}"
  4187. }
  4188. },
  4189. "targetEndpoint": {
  4190. "nodeId": {
  4191. "id": 750659011751
  4192. },
  4193. "slotId": {
  4194. "m_id": "{7B499B7E-BF3B-4AD4-8D4C-5D21779866EE}"
  4195. }
  4196. }
  4197. }
  4198. }
  4199. },
  4200. {
  4201. "Id": {
  4202. "id": 780723782823
  4203. },
  4204. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(Expect Equal: Candidate)",
  4205. "Components": {
  4206. "Component_[14888617023999739543]": {
  4207. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4208. "Id": 14888617023999739543,
  4209. "sourceEndpoint": {
  4210. "nodeId": {
  4211. "id": 712004306087
  4212. },
  4213. "slotId": {
  4214. "m_id": "{E2D9A2CA-408E-4D89-9CF1-7A95A93B7EFB}"
  4215. }
  4216. },
  4217. "targetEndpoint": {
  4218. "nodeId": {
  4219. "id": 754953979047
  4220. },
  4221. "slotId": {
  4222. "m_id": "{627D0FF1-1447-48DE-AFEC-2AEBEF6D19B9}"
  4223. }
  4224. }
  4225. }
  4226. }
  4227. },
  4228. {
  4229. "Id": {
  4230. "id": 785018750119
  4231. },
  4232. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  4233. "Components": {
  4234. "Component_[6646144605766920895]": {
  4235. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4236. "Id": 6646144605766920895,
  4237. "sourceEndpoint": {
  4238. "nodeId": {
  4239. "id": 686234502311
  4240. },
  4241. "slotId": {
  4242. "m_id": "{8C903DE0-5678-4FD0-9005-7F6C0F8E2FD0}"
  4243. }
  4244. },
  4245. "targetEndpoint": {
  4246. "nodeId": {
  4247. "id": 703414371495
  4248. },
  4249. "slotId": {
  4250. "m_id": "{5BE3D97D-9777-47FC-8B90-21EAB192670F}"
  4251. }
  4252. }
  4253. }
  4254. }
  4255. },
  4256. {
  4257. "Id": {
  4258. "id": 789313717415
  4259. },
  4260. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(Expect Equal: Candidate)",
  4261. "Components": {
  4262. "Component_[17689239902721086413]": {
  4263. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4264. "Id": 17689239902721086413,
  4265. "sourceEndpoint": {
  4266. "nodeId": {
  4267. "id": 746364044455
  4268. },
  4269. "slotId": {
  4270. "m_id": "{7849FBC7-0A9D-488B-AA57-7AD13FCE166A}"
  4271. }
  4272. },
  4273. "targetEndpoint": {
  4274. "nodeId": {
  4275. "id": 707709338791
  4276. },
  4277. "slotId": {
  4278. "m_id": "{451A3B33-6124-4772-A253-8CA7E02982AC}"
  4279. }
  4280. }
  4281. }
  4282. }
  4283. },
  4284. {
  4285. "Id": {
  4286. "id": 793608684711
  4287. },
  4288. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(Expect Equal: Candidate)",
  4289. "Components": {
  4290. "Component_[15121995766199231944]": {
  4291. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4292. "Id": 15121995766199231944,
  4293. "sourceEndpoint": {
  4294. "nodeId": {
  4295. "id": 712004306087
  4296. },
  4297. "slotId": {
  4298. "m_id": "{E2D9A2CA-408E-4D89-9CF1-7A95A93B7EFB}"
  4299. }
  4300. },
  4301. "targetEndpoint": {
  4302. "nodeId": {
  4303. "id": 681939535015
  4304. },
  4305. "slotId": {
  4306. "m_id": "{BB5CA306-429E-49ED-9C78-4317045EFC84}"
  4307. }
  4308. }
  4309. }
  4310. }
  4311. },
  4312. {
  4313. "Id": {
  4314. "id": 797903652007
  4315. },
  4316. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Expect Equal: In)",
  4317. "Components": {
  4318. "Component_[14593236407422549680]": {
  4319. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4320. "Id": 14593236407422549680,
  4321. "sourceEndpoint": {
  4322. "nodeId": {
  4323. "id": 746364044455
  4324. },
  4325. "slotId": {
  4326. "m_id": "{09103F3A-CF7F-4865-A1AD-8F09C54CF828}"
  4327. }
  4328. },
  4329. "targetEndpoint": {
  4330. "nodeId": {
  4331. "id": 707709338791
  4332. },
  4333. "slotId": {
  4334. "m_id": "{14067186-E78A-4EB0-A8BB-0EBCCD78B7FF}"
  4335. }
  4336. }
  4337. }
  4338. }
  4339. },
  4340. {
  4341. "Id": {
  4342. "id": 802198619303
  4343. },
  4344. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Expect Equal: Candidate)",
  4345. "Components": {
  4346. "Component_[3845687878694123618]": {
  4347. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4348. "Id": 3845687878694123618,
  4349. "sourceEndpoint": {
  4350. "nodeId": {
  4351. "id": 686234502311
  4352. },
  4353. "slotId": {
  4354. "m_id": "{FBB88698-B8B9-4B40-9600-B2BB83862ABE}"
  4355. }
  4356. },
  4357. "targetEndpoint": {
  4358. "nodeId": {
  4359. "id": 703414371495
  4360. },
  4361. "slotId": {
  4362. "m_id": "{BA774659-E0B5-43A0-9FDA-1AA72C644AC3}"
  4363. }
  4364. }
  4365. }
  4366. }
  4367. },
  4368. {
  4369. "Id": {
  4370. "id": 806493586599
  4371. },
  4372. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Get Size: Array<String>: 0)",
  4373. "Components": {
  4374. "Component_[2413305365466040368]": {
  4375. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4376. "Id": 2413305365466040368,
  4377. "sourceEndpoint": {
  4378. "nodeId": {
  4379. "id": 677644567719
  4380. },
  4381. "slotId": {
  4382. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  4383. }
  4384. },
  4385. "targetEndpoint": {
  4386. "nodeId": {
  4387. "id": 664759665831
  4388. },
  4389. "slotId": {
  4390. "m_id": "{2FF0EE0A-04CA-4F49-9202-30C049FCDD3F}"
  4391. }
  4392. }
  4393. }
  4394. }
  4395. },
  4396. {
  4397. "Id": {
  4398. "id": 810788553895
  4399. },
  4400. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Erase: Array<String>: 0)",
  4401. "Components": {
  4402. "Component_[4199815207008824948]": {
  4403. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4404. "Id": 4199815207008824948,
  4405. "sourceEndpoint": {
  4406. "nodeId": {
  4407. "id": 677644567719
  4408. },
  4409. "slotId": {
  4410. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  4411. }
  4412. },
  4413. "targetEndpoint": {
  4414. "nodeId": {
  4415. "id": 742069077159
  4416. },
  4417. "slotId": {
  4418. "m_id": "{B1B0294D-35F9-4EC9-992F-A35420E73CC9}"
  4419. }
  4420. }
  4421. }
  4422. }
  4423. },
  4424. {
  4425. "Id": {
  4426. "id": 815083521191
  4427. },
  4428. "Name": "srcEndpoint=(Erase: Out), destEndpoint=(Insert: In)",
  4429. "Components": {
  4430. "Component_[14511204123681627204]": {
  4431. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4432. "Id": 14511204123681627204,
  4433. "sourceEndpoint": {
  4434. "nodeId": {
  4435. "id": 742069077159
  4436. },
  4437. "slotId": {
  4438. "m_id": "{C3D6FAD6-285F-4D90-B320-423DA4EFAB06}"
  4439. }
  4440. },
  4441. "targetEndpoint": {
  4442. "nodeId": {
  4443. "id": 699119404199
  4444. },
  4445. "slotId": {
  4446. "m_id": "{67565EA0-2134-49C9-BEEE-38278AE4339B}"
  4447. }
  4448. }
  4449. }
  4450. }
  4451. },
  4452. {
  4453. "Id": {
  4454. "id": 819378488487
  4455. },
  4456. "Name": "srcEndpoint=(Erase: Array<Vector3>), destEndpoint=(Insert: Array<String>: 0)",
  4457. "Components": {
  4458. "Component_[5352934531887899449]": {
  4459. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4460. "Id": 5352934531887899449,
  4461. "sourceEndpoint": {
  4462. "nodeId": {
  4463. "id": 742069077159
  4464. },
  4465. "slotId": {
  4466. "m_id": "{047771D1-F60B-4952-BF6E-B85C8B769D06}"
  4467. }
  4468. },
  4469. "targetEndpoint": {
  4470. "nodeId": {
  4471. "id": 699119404199
  4472. },
  4473. "slotId": {
  4474. "m_id": "{30E9774E-AD52-4FAB-9734-4C7F28261406}"
  4475. }
  4476. }
  4477. }
  4478. }
  4479. },
  4480. {
  4481. "Id": {
  4482. "id": 823673455783
  4483. },
  4484. "Name": "srcEndpoint=(Insert: Out), destEndpoint=(Get Element: In)",
  4485. "Components": {
  4486. "Component_[16291723091510948055]": {
  4487. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4488. "Id": 16291723091510948055,
  4489. "sourceEndpoint": {
  4490. "nodeId": {
  4491. "id": 699119404199
  4492. },
  4493. "slotId": {
  4494. "m_id": "{5E6D007D-A147-4113-97EE-AE2F0DE28A1B}"
  4495. }
  4496. },
  4497. "targetEndpoint": {
  4498. "nodeId": {
  4499. "id": 720594240679
  4500. },
  4501. "slotId": {
  4502. "m_id": "{2C4F449E-ACBD-439E-8C9F-1E0F3D81B563}"
  4503. }
  4504. }
  4505. }
  4506. }
  4507. },
  4508. {
  4509. "Id": {
  4510. "id": 827968423079
  4511. },
  4512. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Get Element: Array<String>: 0)",
  4513. "Components": {
  4514. "Component_[12635503482350124054]": {
  4515. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4516. "Id": 12635503482350124054,
  4517. "sourceEndpoint": {
  4518. "nodeId": {
  4519. "id": 677644567719
  4520. },
  4521. "slotId": {
  4522. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  4523. }
  4524. },
  4525. "targetEndpoint": {
  4526. "nodeId": {
  4527. "id": 720594240679
  4528. },
  4529. "slotId": {
  4530. "m_id": "{09F2E9F5-4D64-4D2E-B364-9BE26489A338}"
  4531. }
  4532. }
  4533. }
  4534. }
  4535. },
  4536. {
  4537. "Id": {
  4538. "id": 832263390375
  4539. },
  4540. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Get Element: Array<String>: 0)",
  4541. "Components": {
  4542. "Component_[11915096331884711512]": {
  4543. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4544. "Id": 11915096331884711512,
  4545. "sourceEndpoint": {
  4546. "nodeId": {
  4547. "id": 677644567719
  4548. },
  4549. "slotId": {
  4550. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  4551. }
  4552. },
  4553. "targetEndpoint": {
  4554. "nodeId": {
  4555. "id": 694824436903
  4556. },
  4557. "slotId": {
  4558. "m_id": "{E0B3102A-5968-4BA8-AEAA-DE5C380F4899}"
  4559. }
  4560. }
  4561. }
  4562. }
  4563. },
  4564. {
  4565. "Id": {
  4566. "id": 836558357671
  4567. },
  4568. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  4569. "Components": {
  4570. "Component_[1613086022672431470]": {
  4571. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4572. "Id": 1613086022672431470,
  4573. "sourceEndpoint": {
  4574. "nodeId": {
  4575. "id": 712004306087
  4576. },
  4577. "slotId": {
  4578. "m_id": "{ABB69248-5F61-4663-B739-7A12C2A0CE4B}"
  4579. }
  4580. },
  4581. "targetEndpoint": {
  4582. "nodeId": {
  4583. "id": 677644567719
  4584. },
  4585. "slotId": {
  4586. "m_id": "{77BF6EBB-EFE6-4546-BF02-767D94357310}"
  4587. }
  4588. }
  4589. }
  4590. }
  4591. },
  4592. {
  4593. "Id": {
  4594. "id": 840853324967
  4595. },
  4596. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Add Element at End: In)",
  4597. "Components": {
  4598. "Component_[13104526044827270501]": {
  4599. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4600. "Id": 13104526044827270501,
  4601. "sourceEndpoint": {
  4602. "nodeId": {
  4603. "id": 729184175271
  4604. },
  4605. "slotId": {
  4606. "m_id": "{C0E74D23-33C9-4A82-B879-9035FBF584AC}"
  4607. }
  4608. },
  4609. "targetEndpoint": {
  4610. "nodeId": {
  4611. "id": 651874763943
  4612. },
  4613. "slotId": {
  4614. "m_id": "{D50E0B3C-DB3B-4DF6-83E1-2B3657AFA0A2}"
  4615. }
  4616. }
  4617. }
  4618. }
  4619. },
  4620. {
  4621. "Id": {
  4622. "id": 845148292263
  4623. },
  4624. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Add Element at End: Array<String>: 0)",
  4625. "Components": {
  4626. "Component_[127100623524149404]": {
  4627. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4628. "Id": 127100623524149404,
  4629. "sourceEndpoint": {
  4630. "nodeId": {
  4631. "id": 729184175271
  4632. },
  4633. "slotId": {
  4634. "m_id": "{83271F0B-0DB9-4414-A12F-FF39D3B585AE}"
  4635. }
  4636. },
  4637. "targetEndpoint": {
  4638. "nodeId": {
  4639. "id": 651874763943
  4640. },
  4641. "slotId": {
  4642. "m_id": "{7C9AFD33-8E8C-4915-A698-5D2189FDE423}"
  4643. }
  4644. }
  4645. }
  4646. }
  4647. },
  4648. {
  4649. "Id": {
  4650. "id": 849443259559
  4651. },
  4652. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(Add Element at End: Vector3: 1)",
  4653. "Components": {
  4654. "Component_[5130206006071328366]": {
  4655. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4656. "Id": 5130206006071328366,
  4657. "sourceEndpoint": {
  4658. "nodeId": {
  4659. "id": 712004306087
  4660. },
  4661. "slotId": {
  4662. "m_id": "{E2D9A2CA-408E-4D89-9CF1-7A95A93B7EFB}"
  4663. }
  4664. },
  4665. "targetEndpoint": {
  4666. "nodeId": {
  4667. "id": 651874763943
  4668. },
  4669. "slotId": {
  4670. "m_id": "{6C9B2659-658F-413C-A79E-7B5044036C2D}"
  4671. }
  4672. }
  4673. }
  4674. }
  4675. },
  4676. {
  4677. "Id": {
  4678. "id": 853738226855
  4679. },
  4680. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Get Variable: In)",
  4681. "Components": {
  4682. "Component_[11424199392482040130]": {
  4683. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4684. "Id": 11424199392482040130,
  4685. "sourceEndpoint": {
  4686. "nodeId": {
  4687. "id": 677644567719
  4688. },
  4689. "slotId": {
  4690. "m_id": "{60D7DF4E-8C2A-4147-99FC-056DE344B705}"
  4691. }
  4692. },
  4693. "targetEndpoint": {
  4694. "nodeId": {
  4695. "id": 729184175271
  4696. },
  4697. "slotId": {
  4698. "m_id": "{FFA13EB8-FB85-42CE-B1A1-746AEF37B35C}"
  4699. }
  4700. }
  4701. }
  4702. }
  4703. },
  4704. {
  4705. "Id": {
  4706. "id": 858033194151
  4707. },
  4708. "Name": "srcEndpoint=(Add Element at End: Out), destEndpoint=(Add Element at End: In)",
  4709. "Components": {
  4710. "Component_[5590459410489221388]": {
  4711. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4712. "Id": 5590459410489221388,
  4713. "sourceEndpoint": {
  4714. "nodeId": {
  4715. "id": 651874763943
  4716. },
  4717. "slotId": {
  4718. "m_id": "{41B58DD9-9878-4EDB-8B9F-B15FA811B533}"
  4719. }
  4720. },
  4721. "targetEndpoint": {
  4722. "nodeId": {
  4723. "id": 716299273383
  4724. },
  4725. "slotId": {
  4726. "m_id": "{85B18E67-179F-4003-A183-AEC320FD7EC5}"
  4727. }
  4728. }
  4729. }
  4730. }
  4731. },
  4732. {
  4733. "Id": {
  4734. "id": 862328161447
  4735. },
  4736. "Name": "srcEndpoint=(Add Element at End: Array<Vector3>), destEndpoint=(Add Element at End: Array<String>: 0)",
  4737. "Components": {
  4738. "Component_[15496605679650146994]": {
  4739. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4740. "Id": 15496605679650146994,
  4741. "sourceEndpoint": {
  4742. "nodeId": {
  4743. "id": 651874763943
  4744. },
  4745. "slotId": {
  4746. "m_id": "{939EFD5B-709C-4840-8ADD-486B39602DD4}"
  4747. }
  4748. },
  4749. "targetEndpoint": {
  4750. "nodeId": {
  4751. "id": 716299273383
  4752. },
  4753. "slotId": {
  4754. "m_id": "{1B3EB254-C097-4425-8560-A2220BFF6566}"
  4755. }
  4756. }
  4757. }
  4758. }
  4759. },
  4760. {
  4761. "Id": {
  4762. "id": 866623128743
  4763. },
  4764. "Name": "srcEndpoint=(Get Variable: Vector3), destEndpoint=(Add Element at End: Vector3: 1)",
  4765. "Components": {
  4766. "Component_[17893783889654263258]": {
  4767. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4768. "Id": 17893783889654263258,
  4769. "sourceEndpoint": {
  4770. "nodeId": {
  4771. "id": 712004306087
  4772. },
  4773. "slotId": {
  4774. "m_id": "{E2D9A2CA-408E-4D89-9CF1-7A95A93B7EFB}"
  4775. }
  4776. },
  4777. "targetEndpoint": {
  4778. "nodeId": {
  4779. "id": 716299273383
  4780. },
  4781. "slotId": {
  4782. "m_id": "{17A7A6D0-47F2-441A-9BD1-0D48CA0B14A1}"
  4783. }
  4784. }
  4785. }
  4786. }
  4787. },
  4788. {
  4789. "Id": {
  4790. "id": 870918096039
  4791. },
  4792. "Name": "srcEndpoint=(Add Element at End: Out), destEndpoint=(For Each: In)",
  4793. "Components": {
  4794. "Component_[3126716922899941379]": {
  4795. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4796. "Id": 3126716922899941379,
  4797. "sourceEndpoint": {
  4798. "nodeId": {
  4799. "id": 716299273383
  4800. },
  4801. "slotId": {
  4802. "m_id": "{19C48E17-BDA2-4FA5-BBB2-B285FD932A67}"
  4803. }
  4804. },
  4805. "targetEndpoint": {
  4806. "nodeId": {
  4807. "id": 763543913639
  4808. },
  4809. "slotId": {
  4810. "m_id": "{905F53A7-0D04-4DE6-9AD2-15CD1ECF7EF2}"
  4811. }
  4812. }
  4813. }
  4814. }
  4815. },
  4816. {
  4817. "Id": {
  4818. "id": 875213063335
  4819. },
  4820. "Name": "srcEndpoint=(Add Element at End: Array<Vector3>), destEndpoint=(For Each: Source)",
  4821. "Components": {
  4822. "Component_[7525420402260877442]": {
  4823. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4824. "Id": 7525420402260877442,
  4825. "sourceEndpoint": {
  4826. "nodeId": {
  4827. "id": 716299273383
  4828. },
  4829. "slotId": {
  4830. "m_id": "{E3F3A0A4-FA5E-47FD-A622-4E8370007A06}"
  4831. }
  4832. },
  4833. "targetEndpoint": {
  4834. "nodeId": {
  4835. "id": 763543913639
  4836. },
  4837. "slotId": {
  4838. "m_id": "{D4CDDB68-B750-4502-937E-58EC9C952032}"
  4839. }
  4840. }
  4841. }
  4842. }
  4843. },
  4844. {
  4845. "Id": {
  4846. "id": 879508030631
  4847. },
  4848. "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Add Element at End: In)",
  4849. "Components": {
  4850. "Component_[5342836744802729148]": {
  4851. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4852. "Id": 5342836744802729148,
  4853. "sourceEndpoint": {
  4854. "nodeId": {
  4855. "id": 763543913639
  4856. },
  4857. "slotId": {
  4858. "m_id": "{ADED928B-1E2A-4B4B-83B3-7CC2A5D4482F}"
  4859. }
  4860. },
  4861. "targetEndpoint": {
  4862. "nodeId": {
  4863. "id": 656169731239
  4864. },
  4865. "slotId": {
  4866. "m_id": "{53844F35-0BEB-42B0-9782-68C48689F45F}"
  4867. }
  4868. }
  4869. }
  4870. }
  4871. },
  4872. {
  4873. "Id": {
  4874. "id": 883802997927
  4875. },
  4876. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Add Element at End: Array<String>: 0)",
  4877. "Components": {
  4878. "Component_[9081415603656577792]": {
  4879. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4880. "Id": 9081415603656577792,
  4881. "sourceEndpoint": {
  4882. "nodeId": {
  4883. "id": 677644567719
  4884. },
  4885. "slotId": {
  4886. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  4887. }
  4888. },
  4889. "targetEndpoint": {
  4890. "nodeId": {
  4891. "id": 656169731239
  4892. },
  4893. "slotId": {
  4894. "m_id": "{A1ABD911-1327-4E5A-BE04-A02E93765FFC}"
  4895. }
  4896. }
  4897. }
  4898. }
  4899. },
  4900. {
  4901. "Id": {
  4902. "id": 888097965223
  4903. },
  4904. "Name": "srcEndpoint=(For Each: Vector3), destEndpoint=(Add Element at End: Vector3: 1)",
  4905. "Components": {
  4906. "Component_[10076745888949469143]": {
  4907. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4908. "Id": 10076745888949469143,
  4909. "sourceEndpoint": {
  4910. "nodeId": {
  4911. "id": 763543913639
  4912. },
  4913. "slotId": {
  4914. "m_id": "{19ECC66C-07B6-451F-BE05-815BC34A12F2}"
  4915. }
  4916. },
  4917. "targetEndpoint": {
  4918. "nodeId": {
  4919. "id": 656169731239
  4920. },
  4921. "slotId": {
  4922. "m_id": "{3015B90A-5204-4BFE-BF83-51F9365A795F}"
  4923. }
  4924. }
  4925. }
  4926. }
  4927. },
  4928. {
  4929. "Id": {
  4930. "id": 892392932519
  4931. },
  4932. "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Get Element: In)",
  4933. "Components": {
  4934. "Component_[17312846210855115028]": {
  4935. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4936. "Id": 17312846210855115028,
  4937. "sourceEndpoint": {
  4938. "nodeId": {
  4939. "id": 763543913639
  4940. },
  4941. "slotId": {
  4942. "m_id": "{90BDD07B-7858-4F0D-971A-3307157E616B}"
  4943. }
  4944. },
  4945. "targetEndpoint": {
  4946. "nodeId": {
  4947. "id": 733479142567
  4948. },
  4949. "slotId": {
  4950. "m_id": "{AE8F8089-4A15-47D1-B435-CDDF886344DC}"
  4951. }
  4952. }
  4953. }
  4954. }
  4955. },
  4956. {
  4957. "Id": {
  4958. "id": 896687899815
  4959. },
  4960. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Get Element: Array<String>: 0)",
  4961. "Components": {
  4962. "Component_[7614540095460627828]": {
  4963. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4964. "Id": 7614540095460627828,
  4965. "sourceEndpoint": {
  4966. "nodeId": {
  4967. "id": 677644567719
  4968. },
  4969. "slotId": {
  4970. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  4971. }
  4972. },
  4973. "targetEndpoint": {
  4974. "nodeId": {
  4975. "id": 733479142567
  4976. },
  4977. "slotId": {
  4978. "m_id": "{68C06744-4BFE-403B-97C7-32DDC048BCED}"
  4979. }
  4980. }
  4981. }
  4982. }
  4983. },
  4984. {
  4985. "Id": {
  4986. "id": 900982867111
  4987. },
  4988. "Name": "srcEndpoint=(Get Element: Key Not Found), destEndpoint=(Add Failure: In)",
  4989. "Components": {
  4990. "Component_[4487036124661194045]": {
  4991. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  4992. "Id": 4487036124661194045,
  4993. "sourceEndpoint": {
  4994. "nodeId": {
  4995. "id": 733479142567
  4996. },
  4997. "slotId": {
  4998. "m_id": "{44146B5F-8CFE-4899-9E67-7E11D0D817CA}"
  4999. }
  5000. },
  5001. "targetEndpoint": {
  5002. "nodeId": {
  5003. "id": 724889207975
  5004. },
  5005. "slotId": {
  5006. "m_id": "{2486380B-6B4F-4B41-AF3F-CBBCB41AB103}"
  5007. }
  5008. }
  5009. }
  5010. }
  5011. },
  5012. {
  5013. "Id": {
  5014. "id": 905277834407
  5015. },
  5016. "Name": "srcEndpoint=(Get Element: Vector3), destEndpoint=(Expect Equal: Reference)",
  5017. "Components": {
  5018. "Component_[14885175611398124859]": {
  5019. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5020. "Id": 14885175611398124859,
  5021. "sourceEndpoint": {
  5022. "nodeId": {
  5023. "id": 733479142567
  5024. },
  5025. "slotId": {
  5026. "m_id": "{CFE24AC3-F3B8-4D8C-AF55-CBFD76DC8432}"
  5027. }
  5028. },
  5029. "targetEndpoint": {
  5030. "nodeId": {
  5031. "id": 750659011751
  5032. },
  5033. "slotId": {
  5034. "m_id": "{2381009C-2DEE-436D-A649-B1978C6D84A1}"
  5035. }
  5036. }
  5037. }
  5038. }
  5039. },
  5040. {
  5041. "Id": {
  5042. "id": 909572801703
  5043. },
  5044. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Get Last Element: Array<String>: 0)",
  5045. "Components": {
  5046. "Component_[1849231491000098517]": {
  5047. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5048. "Id": 1849231491000098517,
  5049. "sourceEndpoint": {
  5050. "nodeId": {
  5051. "id": 677644567719
  5052. },
  5053. "slotId": {
  5054. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  5055. }
  5056. },
  5057. "targetEndpoint": {
  5058. "nodeId": {
  5059. "id": 690529469607
  5060. },
  5061. "slotId": {
  5062. "m_id": "{6D716DEB-11D8-4263-A8A1-D2884EBF29CD}"
  5063. }
  5064. }
  5065. }
  5066. }
  5067. },
  5068. {
  5069. "Id": {
  5070. "id": 913867768999
  5071. },
  5072. "Name": "srcEndpoint=(Get Last Element: Vector3), destEndpoint=(Expect Equal: Reference)",
  5073. "Components": {
  5074. "Component_[10809325483836804286]": {
  5075. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5076. "Id": 10809325483836804286,
  5077. "sourceEndpoint": {
  5078. "nodeId": {
  5079. "id": 690529469607
  5080. },
  5081. "slotId": {
  5082. "m_id": "{E5352552-EA64-48C7-A56C-97A6572121B6}"
  5083. }
  5084. },
  5085. "targetEndpoint": {
  5086. "nodeId": {
  5087. "id": 754953979047
  5088. },
  5089. "slotId": {
  5090. "m_id": "{13961632-556C-425A-AFF1-1E8BE1CE2C38}"
  5091. }
  5092. }
  5093. }
  5094. }
  5095. },
  5096. {
  5097. "Id": {
  5098. "id": 918162736295
  5099. },
  5100. "Name": "srcEndpoint=(Get Variable: Array<Vector3>), destEndpoint=(Get First Element: Array<String>: 0)",
  5101. "Components": {
  5102. "Component_[16695186772536098973]": {
  5103. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5104. "Id": 16695186772536098973,
  5105. "sourceEndpoint": {
  5106. "nodeId": {
  5107. "id": 677644567719
  5108. },
  5109. "slotId": {
  5110. "m_id": "{452EF201-DD46-4940-A050-B8BBA787A3BF}"
  5111. }
  5112. },
  5113. "targetEndpoint": {
  5114. "nodeId": {
  5115. "id": 737774109863
  5116. },
  5117. "slotId": {
  5118. "m_id": "{BAE0F270-88BC-4E5C-B461-4BCD4AEAB550}"
  5119. }
  5120. }
  5121. }
  5122. }
  5123. },
  5124. {
  5125. "Id": {
  5126. "id": 922457703591
  5127. },
  5128. "Name": "srcEndpoint=(Get First Element: Vector3), destEndpoint=(Expect Equal: Reference)",
  5129. "Components": {
  5130. "Component_[2513488695829265935]": {
  5131. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5132. "Id": 2513488695829265935,
  5133. "sourceEndpoint": {
  5134. "nodeId": {
  5135. "id": 737774109863
  5136. },
  5137. "slotId": {
  5138. "m_id": "{80902C96-A82C-40E2-9CDE-ECF9F53A7024}"
  5139. }
  5140. },
  5141. "targetEndpoint": {
  5142. "nodeId": {
  5143. "id": 681939535015
  5144. },
  5145. "slotId": {
  5146. "m_id": "{73A104E0-364A-4B20-B7BF-5604B9546C51}"
  5147. }
  5148. }
  5149. }
  5150. }
  5151. },
  5152. {
  5153. "Id": {
  5154. "id": 926752670887
  5155. },
  5156. "Name": "srcEndpoint=(Get Size: Out), destEndpoint=(Get Variable: In)",
  5157. "Components": {
  5158. "Component_[4496259532792042111]": {
  5159. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5160. "Id": 4496259532792042111,
  5161. "sourceEndpoint": {
  5162. "nodeId": {
  5163. "id": 664759665831
  5164. },
  5165. "slotId": {
  5166. "m_id": "{C9F63428-D0A5-43B7-9252-0359C094AF43}"
  5167. }
  5168. },
  5169. "targetEndpoint": {
  5170. "nodeId": {
  5171. "id": 686234502311
  5172. },
  5173. "slotId": {
  5174. "m_id": "{407EAB20-FAD5-46A9-B7DC-5F23ED520E6C}"
  5175. }
  5176. }
  5177. }
  5178. }
  5179. },
  5180. {
  5181. "Id": {
  5182. "id": 931047638183
  5183. },
  5184. "Name": "srcEndpoint=(Get Size: Result: Number), destEndpoint=(Expect Equal: Reference :-()",
  5185. "Components": {
  5186. "Component_[6272319277815284686]": {
  5187. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5188. "Id": 6272319277815284686,
  5189. "sourceEndpoint": {
  5190. "nodeId": {
  5191. "id": 664759665831
  5192. },
  5193. "slotId": {
  5194. "m_id": "{AB0FA3B7-B8C0-44E2-A5CB-8D297B11D480}"
  5195. }
  5196. },
  5197. "targetEndpoint": {
  5198. "nodeId": {
  5199. "id": 703414371495
  5200. },
  5201. "slotId": {
  5202. "m_id": "{B85027A1-956C-401E-BFD4-FBDC2066EC6C}"
  5203. }
  5204. }
  5205. }
  5206. }
  5207. },
  5208. {
  5209. "Id": {
  5210. "id": 935342605479
  5211. },
  5212. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Erase: In)",
  5213. "Components": {
  5214. "Component_[10154675537329960152]": {
  5215. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5216. "Id": 10154675537329960152,
  5217. "sourceEndpoint": {
  5218. "nodeId": {
  5219. "id": 703414371495
  5220. },
  5221. "slotId": {
  5222. "m_id": "{7A5ABBA0-CF44-4933-95ED-48541A4FF013}"
  5223. }
  5224. },
  5225. "targetEndpoint": {
  5226. "nodeId": {
  5227. "id": 742069077159
  5228. },
  5229. "slotId": {
  5230. "m_id": "{6A88CC04-920F-4DDB-80B3-C5E4DB598678}"
  5231. }
  5232. }
  5233. }
  5234. }
  5235. },
  5236. {
  5237. "Id": {
  5238. "id": 939637572775
  5239. },
  5240. "Name": "srcEndpoint=(Erase: Key Not Found), destEndpoint=(Add Failure: In)",
  5241. "Components": {
  5242. "Component_[15589487015126187331]": {
  5243. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5244. "Id": 15589487015126187331,
  5245. "sourceEndpoint": {
  5246. "nodeId": {
  5247. "id": 742069077159
  5248. },
  5249. "slotId": {
  5250. "m_id": "{239D2520-CD00-4349-9BD4-6DC0BAF9996B}"
  5251. }
  5252. },
  5253. "targetEndpoint": {
  5254. "nodeId": {
  5255. "id": 673349600423
  5256. },
  5257. "slotId": {
  5258. "m_id": "{9364BE04-3D87-46C3-97E3-7B79018C995D}"
  5259. }
  5260. }
  5261. }
  5262. }
  5263. },
  5264. {
  5265. "Id": {
  5266. "id": 943932540071
  5267. },
  5268. "Name": "srcEndpoint=(Get Element: Key Not Found), destEndpoint=(Add Failure: In)",
  5269. "Components": {
  5270. "Component_[5616164106847871186]": {
  5271. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5272. "Id": 5616164106847871186,
  5273. "sourceEndpoint": {
  5274. "nodeId": {
  5275. "id": 720594240679
  5276. },
  5277. "slotId": {
  5278. "m_id": "{B0094C22-48A7-47E6-A502-1FA0E2EF4DAB}"
  5279. }
  5280. },
  5281. "targetEndpoint": {
  5282. "nodeId": {
  5283. "id": 669054633127
  5284. },
  5285. "slotId": {
  5286. "m_id": "{0FA5394C-FF35-4775-B7E0-EF4E557E1B22}"
  5287. }
  5288. }
  5289. }
  5290. }
  5291. },
  5292. {
  5293. "Id": {
  5294. "id": 948227507367
  5295. },
  5296. "Name": "srcEndpoint=(Get Element: Out), destEndpoint=(Get Variable: In)",
  5297. "Components": {
  5298. "Component_[8868045409539773255]": {
  5299. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5300. "Id": 8868045409539773255,
  5301. "sourceEndpoint": {
  5302. "nodeId": {
  5303. "id": 720594240679
  5304. },
  5305. "slotId": {
  5306. "m_id": "{65380C81-832A-44F8-BF96-985922D4F0D5}"
  5307. }
  5308. },
  5309. "targetEndpoint": {
  5310. "nodeId": {
  5311. "id": 746364044455
  5312. },
  5313. "slotId": {
  5314. "m_id": "{372416EA-E828-433F-90FC-2FFAC7B520E4}"
  5315. }
  5316. }
  5317. }
  5318. }
  5319. },
  5320. {
  5321. "Id": {
  5322. "id": 952522474663
  5323. },
  5324. "Name": "srcEndpoint=(Get Element: Vector3), destEndpoint=(Expect Equal: Reference)",
  5325. "Components": {
  5326. "Component_[8793495586272090454]": {
  5327. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5328. "Id": 8793495586272090454,
  5329. "sourceEndpoint": {
  5330. "nodeId": {
  5331. "id": 720594240679
  5332. },
  5333. "slotId": {
  5334. "m_id": "{F8922A77-1B2A-4F2E-A054-366AA5F09874}"
  5335. }
  5336. },
  5337. "targetEndpoint": {
  5338. "nodeId": {
  5339. "id": 707709338791
  5340. },
  5341. "slotId": {
  5342. "m_id": "{2E7D2193-2BF1-4AAE-80DB-B4B68462E6C2}"
  5343. }
  5344. }
  5345. }
  5346. }
  5347. },
  5348. {
  5349. "Id": {
  5350. "id": 956817441959
  5351. },
  5352. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Element: In)",
  5353. "Components": {
  5354. "Component_[3964372487801109871]": {
  5355. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5356. "Id": 3964372487801109871,
  5357. "sourceEndpoint": {
  5358. "nodeId": {
  5359. "id": 707709338791
  5360. },
  5361. "slotId": {
  5362. "m_id": "{10ABA7D0-6DE8-4F83-B594-3788D8A62C7A}"
  5363. }
  5364. },
  5365. "targetEndpoint": {
  5366. "nodeId": {
  5367. "id": 694824436903
  5368. },
  5369. "slotId": {
  5370. "m_id": "{A09A13A0-99AB-4D32-AEDC-C6784D9DCF80}"
  5371. }
  5372. }
  5373. }
  5374. }
  5375. },
  5376. {
  5377. "Id": {
  5378. "id": 961112409255
  5379. },
  5380. "Name": "srcEndpoint=(Get Element: Out), destEndpoint=(Add Failure: In)",
  5381. "Components": {
  5382. "Component_[17610603160999100505]": {
  5383. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5384. "Id": 17610603160999100505,
  5385. "sourceEndpoint": {
  5386. "nodeId": {
  5387. "id": 694824436903
  5388. },
  5389. "slotId": {
  5390. "m_id": "{0C6B77AB-7C08-48F7-BB31-E8FACA6DF6F3}"
  5391. }
  5392. },
  5393. "targetEndpoint": {
  5394. "nodeId": {
  5395. "id": 767838880935
  5396. },
  5397. "slotId": {
  5398. "m_id": "{CD902879-1C95-4611-AD23-0A1E13B72812}"
  5399. }
  5400. }
  5401. }
  5402. }
  5403. },
  5404. {
  5405. "Id": {
  5406. "id": 965407376551
  5407. },
  5408. "Name": "srcEndpoint=(Get Element: Key Not Found), destEndpoint=(Mark Complete: In)",
  5409. "Components": {
  5410. "Component_[8899089766441362553]": {
  5411. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5412. "Id": 8899089766441362553,
  5413. "sourceEndpoint": {
  5414. "nodeId": {
  5415. "id": 694824436903
  5416. },
  5417. "slotId": {
  5418. "m_id": "{355CE16E-14EC-4DD0-8B28-1C45E2980410}"
  5419. }
  5420. },
  5421. "targetEndpoint": {
  5422. "nodeId": {
  5423. "id": 759248946343
  5424. },
  5425. "slotId": {
  5426. "m_id": "{8363A0A8-1CB0-43AC-8A67-42C4809F7993}"
  5427. }
  5428. }
  5429. }
  5430. }
  5431. },
  5432. {
  5433. "Id": {
  5434. "id": 969702343847
  5435. },
  5436. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Size: In)",
  5437. "Components": {
  5438. "Component_[6256086636053275475]": {
  5439. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5440. "Id": 6256086636053275475,
  5441. "sourceEndpoint": {
  5442. "nodeId": {
  5443. "id": 681939535015
  5444. },
  5445. "slotId": {
  5446. "m_id": "{982C2784-D626-4D0D-992C-09D22BCF8CD7}"
  5447. }
  5448. },
  5449. "targetEndpoint": {
  5450. "nodeId": {
  5451. "id": 664759665831
  5452. },
  5453. "slotId": {
  5454. "m_id": "{0D1EE757-1D39-4A52-AFE8-7211338AF8E6}"
  5455. }
  5456. }
  5457. }
  5458. }
  5459. },
  5460. {
  5461. "Id": {
  5462. "id": 973997311143
  5463. },
  5464. "Name": "srcEndpoint=(Get First Element: Out), destEndpoint=(Expect Equal: In)",
  5465. "Components": {
  5466. "Component_[4623352504037129645]": {
  5467. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5468. "Id": 4623352504037129645,
  5469. "sourceEndpoint": {
  5470. "nodeId": {
  5471. "id": 737774109863
  5472. },
  5473. "slotId": {
  5474. "m_id": "{946B5003-FD53-4B50-B28E-2686E3F9A878}"
  5475. }
  5476. },
  5477. "targetEndpoint": {
  5478. "nodeId": {
  5479. "id": 681939535015
  5480. },
  5481. "slotId": {
  5482. "m_id": "{2E7B8745-5B4C-4602-990E-75BF7A42FE89}"
  5483. }
  5484. }
  5485. }
  5486. }
  5487. },
  5488. {
  5489. "Id": {
  5490. "id": 978292278439
  5491. },
  5492. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get First Element: In)",
  5493. "Components": {
  5494. "Component_[3358476495593130554]": {
  5495. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5496. "Id": 3358476495593130554,
  5497. "sourceEndpoint": {
  5498. "nodeId": {
  5499. "id": 754953979047
  5500. },
  5501. "slotId": {
  5502. "m_id": "{E6B85A22-8B97-4B80-803B-5CD2F04BB584}"
  5503. }
  5504. },
  5505. "targetEndpoint": {
  5506. "nodeId": {
  5507. "id": 737774109863
  5508. },
  5509. "slotId": {
  5510. "m_id": "{58575C6C-1545-46EB-96C4-D4AED1F1D40C}"
  5511. }
  5512. }
  5513. }
  5514. }
  5515. },
  5516. {
  5517. "Id": {
  5518. "id": 982587245735
  5519. },
  5520. "Name": "srcEndpoint=(Get Last Element: Out), destEndpoint=(Expect Equal: In)",
  5521. "Components": {
  5522. "Component_[13098575633473750550]": {
  5523. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5524. "Id": 13098575633473750550,
  5525. "sourceEndpoint": {
  5526. "nodeId": {
  5527. "id": 690529469607
  5528. },
  5529. "slotId": {
  5530. "m_id": "{BBEAE551-68D3-4994-9EDF-23902506EE96}"
  5531. }
  5532. },
  5533. "targetEndpoint": {
  5534. "nodeId": {
  5535. "id": 754953979047
  5536. },
  5537. "slotId": {
  5538. "m_id": "{A542A1EB-527E-46A8-9017-E2B359A36AF9}"
  5539. }
  5540. }
  5541. }
  5542. }
  5543. },
  5544. {
  5545. "Id": {
  5546. "id": 986882213031
  5547. },
  5548. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Last Element: In)",
  5549. "Components": {
  5550. "Component_[3544995804497755554]": {
  5551. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5552. "Id": 3544995804497755554,
  5553. "sourceEndpoint": {
  5554. "nodeId": {
  5555. "id": 750659011751
  5556. },
  5557. "slotId": {
  5558. "m_id": "{50885CCE-BE77-403B-AECF-03D940A46D6F}"
  5559. }
  5560. },
  5561. "targetEndpoint": {
  5562. "nodeId": {
  5563. "id": 690529469607
  5564. },
  5565. "slotId": {
  5566. "m_id": "{F54AC675-95B6-4CB7-A549-AEB57C3B2E87}"
  5567. }
  5568. }
  5569. }
  5570. }
  5571. },
  5572. {
  5573. "Id": {
  5574. "id": 991177180327
  5575. },
  5576. "Name": "srcEndpoint=(Get Element: Out), destEndpoint=(Expect Equal: In)",
  5577. "Components": {
  5578. "Component_[12808690276645525873]": {
  5579. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  5580. "Id": 12808690276645525873,
  5581. "sourceEndpoint": {
  5582. "nodeId": {
  5583. "id": 733479142567
  5584. },
  5585. "slotId": {
  5586. "m_id": "{97A0B8FA-F471-4FF8-BAB8-E9833AEBF940}"
  5587. }
  5588. },
  5589. "targetEndpoint": {
  5590. "nodeId": {
  5591. "id": 750659011751
  5592. },
  5593. "slotId": {
  5594. "m_id": "{1877ADDF-C98B-4A3F-9141-51F8BAEE0F76}"
  5595. }
  5596. }
  5597. }
  5598. }
  5599. }
  5600. ]
  5601. },
  5602. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  5603. "versionData": {
  5604. "_grammarVersion": 1,
  5605. "_runtimeVersion": 1,
  5606. "_fileVersion": 1
  5607. },
  5608. "m_variableCounter": 7,
  5609. "GraphCanvasData": [
  5610. {
  5611. "Key": {
  5612. "id": 647579796647
  5613. },
  5614. "Value": {
  5615. "ComponentData": {
  5616. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  5617. "$type": "SceneComponentSaveData",
  5618. "ViewParams": {
  5619. "Scale": 0.1579415,
  5620. "AnchorX": -3729.228271484375,
  5621. "AnchorY": -1709.4935302734375
  5622. }
  5623. }
  5624. }
  5625. }
  5626. },
  5627. {
  5628. "Key": {
  5629. "id": 651874763943
  5630. },
  5631. "Value": {
  5632. "ComponentData": {
  5633. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5634. "$type": "NodeSaveData"
  5635. },
  5636. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5637. "$type": "GeneralNodeTitleComponentSaveData",
  5638. "PaletteOverride": "MethodNodeTitlePalette"
  5639. },
  5640. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5641. "$type": "GeometrySaveData",
  5642. "Position": [
  5643. -420.0,
  5644. -240.0
  5645. ]
  5646. },
  5647. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5648. "$type": "StylingComponentSaveData",
  5649. "SubStyle": ".method"
  5650. },
  5651. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5652. "$type": "PersistentIdComponentSaveData",
  5653. "PersistentId": "{1BCEFE44-8C5D-4E9A-9267-F480AE8612AD}"
  5654. }
  5655. }
  5656. }
  5657. },
  5658. {
  5659. "Key": {
  5660. "id": 656169731239
  5661. },
  5662. "Value": {
  5663. "ComponentData": {
  5664. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5665. "$type": "NodeSaveData"
  5666. },
  5667. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5668. "$type": "GeneralNodeTitleComponentSaveData",
  5669. "PaletteOverride": "MethodNodeTitlePalette"
  5670. },
  5671. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5672. "$type": "GeometrySaveData",
  5673. "Position": [
  5674. -80.0,
  5675. -240.0
  5676. ]
  5677. },
  5678. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5679. "$type": "StylingComponentSaveData",
  5680. "SubStyle": ".method"
  5681. },
  5682. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5683. "$type": "PersistentIdComponentSaveData",
  5684. "PersistentId": "{FA2D4BF8-2A1B-4B4C-B5C8-B59990C71336}"
  5685. }
  5686. }
  5687. }
  5688. },
  5689. {
  5690. "Key": {
  5691. "id": 660464698535
  5692. },
  5693. "Value": {
  5694. "ComponentData": {
  5695. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5696. "$type": "NodeSaveData"
  5697. },
  5698. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5699. "$type": "GeneralNodeTitleComponentSaveData",
  5700. "PaletteOverride": "DefaultNodeTitlePalette"
  5701. },
  5702. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5703. "$type": "GeometrySaveData",
  5704. "Position": [
  5705. -1180.0,
  5706. -220.0
  5707. ]
  5708. },
  5709. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5710. "$type": "StylingComponentSaveData"
  5711. },
  5712. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5713. "$type": "PersistentIdComponentSaveData",
  5714. "PersistentId": "{ECE99919-F946-48B5-B8A2-D3B4F63684A4}"
  5715. }
  5716. }
  5717. }
  5718. },
  5719. {
  5720. "Key": {
  5721. "id": 664759665831
  5722. },
  5723. "Value": {
  5724. "ComponentData": {
  5725. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5726. "$type": "NodeSaveData"
  5727. },
  5728. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5729. "$type": "GeneralNodeTitleComponentSaveData",
  5730. "PaletteOverride": "MethodNodeTitlePalette"
  5731. },
  5732. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5733. "$type": "GeometrySaveData",
  5734. "Position": [
  5735. -400.0,
  5736. 220.0
  5737. ]
  5738. },
  5739. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5740. "$type": "StylingComponentSaveData",
  5741. "SubStyle": ".method"
  5742. },
  5743. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5744. "$type": "PersistentIdComponentSaveData",
  5745. "PersistentId": "{C7BC4DD7-25C8-4F55-A9B6-190EE4652937}"
  5746. }
  5747. }
  5748. }
  5749. },
  5750. {
  5751. "Key": {
  5752. "id": 669054633127
  5753. },
  5754. "Value": {
  5755. "ComponentData": {
  5756. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5757. "$type": "NodeSaveData"
  5758. },
  5759. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5760. "$type": "GeneralNodeTitleComponentSaveData",
  5761. "PaletteOverride": "TestingNodeTitlePalette"
  5762. },
  5763. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5764. "$type": "GeometrySaveData",
  5765. "Position": [
  5766. 900.0,
  5767. 460.0
  5768. ]
  5769. },
  5770. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5771. "$type": "StylingComponentSaveData"
  5772. },
  5773. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5774. "$type": "PersistentIdComponentSaveData",
  5775. "PersistentId": "{F45FDA65-B884-4810-BFF1-A40381CFA094}"
  5776. }
  5777. }
  5778. }
  5779. },
  5780. {
  5781. "Key": {
  5782. "id": 673349600423
  5783. },
  5784. "Value": {
  5785. "ComponentData": {
  5786. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5787. "$type": "NodeSaveData"
  5788. },
  5789. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5790. "$type": "GeneralNodeTitleComponentSaveData",
  5791. "PaletteOverride": "TestingNodeTitlePalette"
  5792. },
  5793. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5794. "$type": "GeometrySaveData",
  5795. "Position": [
  5796. 560.0,
  5797. 680.0
  5798. ]
  5799. },
  5800. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5801. "$type": "StylingComponentSaveData"
  5802. },
  5803. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5804. "$type": "PersistentIdComponentSaveData",
  5805. "PersistentId": "{388C9ADE-C6FC-4C9D-955B-FC70290096B3}"
  5806. }
  5807. }
  5808. }
  5809. },
  5810. {
  5811. "Key": {
  5812. "id": 677644567719
  5813. },
  5814. "Value": {
  5815. "ComponentData": {
  5816. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5817. "$type": "NodeSaveData"
  5818. },
  5819. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5820. "$type": "GeneralNodeTitleComponentSaveData",
  5821. "PaletteOverride": "GetVariableNodeTitlePalette"
  5822. },
  5823. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5824. "$type": "GeometrySaveData",
  5825. "Position": [
  5826. -980.0,
  5827. 60.0
  5828. ]
  5829. },
  5830. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5831. "$type": "StylingComponentSaveData",
  5832. "SubStyle": ".getVariable"
  5833. },
  5834. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5835. "$type": "PersistentIdComponentSaveData",
  5836. "PersistentId": "{761881F4-AE06-4CBF-A531-E12F1C93099A}"
  5837. }
  5838. }
  5839. }
  5840. },
  5841. {
  5842. "Key": {
  5843. "id": 681939535015
  5844. },
  5845. "Value": {
  5846. "ComponentData": {
  5847. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5848. "$type": "NodeSaveData"
  5849. },
  5850. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5851. "$type": "GeneralNodeTitleComponentSaveData",
  5852. "PaletteOverride": "TestingNodeTitlePalette"
  5853. },
  5854. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5855. "$type": "GeometrySaveData",
  5856. "Position": [
  5857. 1880.0,
  5858. -260.0
  5859. ]
  5860. },
  5861. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5862. "$type": "StylingComponentSaveData"
  5863. },
  5864. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5865. "$type": "PersistentIdComponentSaveData",
  5866. "PersistentId": "{F4B27EA6-5C92-4980-A76D-FA1CF9293011}"
  5867. }
  5868. }
  5869. }
  5870. },
  5871. {
  5872. "Key": {
  5873. "id": 686234502311
  5874. },
  5875. "Value": {
  5876. "ComponentData": {
  5877. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5878. "$type": "NodeSaveData"
  5879. },
  5880. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5881. "$type": "GeneralNodeTitleComponentSaveData",
  5882. "PaletteOverride": "GetVariableNodeTitlePalette"
  5883. },
  5884. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5885. "$type": "GeometrySaveData",
  5886. "Position": [
  5887. -80.0,
  5888. 200.0
  5889. ]
  5890. },
  5891. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5892. "$type": "StylingComponentSaveData",
  5893. "SubStyle": ".getVariable"
  5894. },
  5895. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5896. "$type": "PersistentIdComponentSaveData",
  5897. "PersistentId": "{019818F2-8CB0-438B-841E-171E1E79250F}"
  5898. }
  5899. }
  5900. }
  5901. },
  5902. {
  5903. "Key": {
  5904. "id": 690529469607
  5905. },
  5906. "Value": {
  5907. "ComponentData": {
  5908. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5909. "$type": "NodeSaveData"
  5910. },
  5911. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5912. "$type": "GeneralNodeTitleComponentSaveData",
  5913. "PaletteOverride": "MethodNodeTitlePalette"
  5914. },
  5915. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5916. "$type": "GeometrySaveData",
  5917. "Position": [
  5918. 920.0,
  5919. -240.0
  5920. ]
  5921. },
  5922. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5923. "$type": "StylingComponentSaveData",
  5924. "SubStyle": ".method"
  5925. },
  5926. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5927. "$type": "PersistentIdComponentSaveData",
  5928. "PersistentId": "{9C01725E-F5ED-4DB7-8A07-47564263F0DF}"
  5929. }
  5930. }
  5931. }
  5932. },
  5933. {
  5934. "Key": {
  5935. "id": 694824436903
  5936. },
  5937. "Value": {
  5938. "ComponentData": {
  5939. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5940. "$type": "NodeSaveData"
  5941. },
  5942. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5943. "$type": "GeneralNodeTitleComponentSaveData",
  5944. "PaletteOverride": "MethodNodeTitlePalette"
  5945. },
  5946. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5947. "$type": "GeometrySaveData",
  5948. "Position": [
  5949. 1800.0,
  5950. 220.0
  5951. ]
  5952. },
  5953. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5954. "$type": "StylingComponentSaveData",
  5955. "SubStyle": ".method"
  5956. },
  5957. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5958. "$type": "PersistentIdComponentSaveData",
  5959. "PersistentId": "{1520D52F-13BD-4B00-853B-B82850680B19}"
  5960. }
  5961. }
  5962. }
  5963. },
  5964. {
  5965. "Key": {
  5966. "id": 699119404199
  5967. },
  5968. "Value": {
  5969. "ComponentData": {
  5970. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  5971. "$type": "NodeSaveData"
  5972. },
  5973. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  5974. "$type": "GeneralNodeTitleComponentSaveData",
  5975. "PaletteOverride": "MethodNodeTitlePalette"
  5976. },
  5977. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  5978. "$type": "GeometrySaveData",
  5979. "Position": [
  5980. 420.0,
  5981. 440.0
  5982. ]
  5983. },
  5984. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  5985. "$type": "StylingComponentSaveData",
  5986. "SubStyle": ".method"
  5987. },
  5988. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  5989. "$type": "PersistentIdComponentSaveData",
  5990. "PersistentId": "{9A8574B4-4A33-43C4-A43B-8E71B318F869}"
  5991. }
  5992. }
  5993. }
  5994. },
  5995. {
  5996. "Key": {
  5997. "id": 703414371495
  5998. },
  5999. "Value": {
  6000. "ComponentData": {
  6001. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6002. "$type": "NodeSaveData"
  6003. },
  6004. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6005. "$type": "GeneralNodeTitleComponentSaveData",
  6006. "PaletteOverride": "TestingNodeTitlePalette"
  6007. },
  6008. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6009. "$type": "GeometrySaveData",
  6010. "Position": [
  6011. 100.0,
  6012. 200.0
  6013. ]
  6014. },
  6015. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6016. "$type": "StylingComponentSaveData"
  6017. },
  6018. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6019. "$type": "PersistentIdComponentSaveData",
  6020. "PersistentId": "{AEBF6FE3-0F6B-431D-A3D0-E14AA49132B2}"
  6021. }
  6022. }
  6023. }
  6024. },
  6025. {
  6026. "Key": {
  6027. "id": 707709338791
  6028. },
  6029. "Value": {
  6030. "ComponentData": {
  6031. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6032. "$type": "NodeSaveData"
  6033. },
  6034. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6035. "$type": "GeneralNodeTitleComponentSaveData",
  6036. "PaletteOverride": "TestingNodeTitlePalette"
  6037. },
  6038. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6039. "$type": "GeometrySaveData",
  6040. "Position": [
  6041. 1480.0,
  6042. 200.0
  6043. ]
  6044. },
  6045. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6046. "$type": "StylingComponentSaveData"
  6047. },
  6048. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6049. "$type": "PersistentIdComponentSaveData",
  6050. "PersistentId": "{4C579C6B-AC06-4696-B3C8-3B154F60D4DB}"
  6051. }
  6052. }
  6053. }
  6054. },
  6055. {
  6056. "Key": {
  6057. "id": 712004306087
  6058. },
  6059. "Value": {
  6060. "ComponentData": {
  6061. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6062. "$type": "NodeSaveData"
  6063. },
  6064. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6065. "$type": "GeneralNodeTitleComponentSaveData",
  6066. "PaletteOverride": "GetVariableNodeTitlePalette"
  6067. },
  6068. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6069. "$type": "GeometrySaveData",
  6070. "Position": [
  6071. -980.0,
  6072. -220.0
  6073. ]
  6074. },
  6075. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6076. "$type": "StylingComponentSaveData",
  6077. "SubStyle": ".getVariable"
  6078. },
  6079. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6080. "$type": "PersistentIdComponentSaveData",
  6081. "PersistentId": "{7559DC81-E764-4771-9657-A4E610974A64}"
  6082. }
  6083. }
  6084. }
  6085. },
  6086. {
  6087. "Key": {
  6088. "id": 716299273383
  6089. },
  6090. "Value": {
  6091. "ComponentData": {
  6092. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6093. "$type": "NodeSaveData"
  6094. },
  6095. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6096. "$type": "GeneralNodeTitleComponentSaveData",
  6097. "PaletteOverride": "MethodNodeTitlePalette"
  6098. },
  6099. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6100. "$type": "GeometrySaveData",
  6101. "Position": [
  6102. -420.0,
  6103. -420.0
  6104. ]
  6105. },
  6106. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6107. "$type": "StylingComponentSaveData",
  6108. "SubStyle": ".method"
  6109. },
  6110. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6111. "$type": "PersistentIdComponentSaveData",
  6112. "PersistentId": "{59D05860-AC91-4015-B54E-4588460DD65D}"
  6113. }
  6114. }
  6115. }
  6116. },
  6117. {
  6118. "Key": {
  6119. "id": 720594240679
  6120. },
  6121. "Value": {
  6122. "ComponentData": {
  6123. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6124. "$type": "NodeSaveData"
  6125. },
  6126. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6127. "$type": "GeneralNodeTitleComponentSaveData",
  6128. "PaletteOverride": "MethodNodeTitlePalette"
  6129. },
  6130. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6131. "$type": "GeometrySaveData",
  6132. "Position": [
  6133. 900.0,
  6134. 220.0
  6135. ]
  6136. },
  6137. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6138. "$type": "StylingComponentSaveData",
  6139. "SubStyle": ".method"
  6140. },
  6141. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6142. "$type": "PersistentIdComponentSaveData",
  6143. "PersistentId": "{9A622B77-C3A0-4561-B7C4-25A397924882}"
  6144. }
  6145. }
  6146. }
  6147. },
  6148. {
  6149. "Key": {
  6150. "id": 724889207975
  6151. },
  6152. "Value": {
  6153. "ComponentData": {
  6154. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6155. "$type": "NodeSaveData"
  6156. },
  6157. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6158. "$type": "GeneralNodeTitleComponentSaveData",
  6159. "PaletteOverride": "TestingNodeTitlePalette"
  6160. },
  6161. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6162. "$type": "GeometrySaveData",
  6163. "Position": [
  6164. 580.0,
  6165. 0.0
  6166. ]
  6167. },
  6168. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6169. "$type": "StylingComponentSaveData"
  6170. },
  6171. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6172. "$type": "PersistentIdComponentSaveData",
  6173. "PersistentId": "{B3F6A6F3-28B3-4060-AAB0-E2FE3C206AE8}"
  6174. }
  6175. }
  6176. }
  6177. },
  6178. {
  6179. "Key": {
  6180. "id": 729184175271
  6181. },
  6182. "Value": {
  6183. "ComponentData": {
  6184. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6185. "$type": "NodeSaveData"
  6186. },
  6187. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6188. "$type": "GeneralNodeTitleComponentSaveData",
  6189. "PaletteOverride": "GetVariableNodeTitlePalette"
  6190. },
  6191. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6192. "$type": "GeometrySaveData",
  6193. "Position": [
  6194. -740.0,
  6195. -240.0
  6196. ]
  6197. },
  6198. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6199. "$type": "StylingComponentSaveData",
  6200. "SubStyle": ".getVariable"
  6201. },
  6202. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6203. "$type": "PersistentIdComponentSaveData",
  6204. "PersistentId": "{7D21FA40-D99D-472F-AD5E-1CE041F25CE5}"
  6205. }
  6206. }
  6207. }
  6208. },
  6209. {
  6210. "Key": {
  6211. "id": 733479142567
  6212. },
  6213. "Value": {
  6214. "ComponentData": {
  6215. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6216. "$type": "NodeSaveData"
  6217. },
  6218. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6219. "$type": "GeneralNodeTitleComponentSaveData",
  6220. "PaletteOverride": "MethodNodeTitlePalette"
  6221. },
  6222. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6223. "$type": "GeometrySaveData",
  6224. "Position": [
  6225. 240.0,
  6226. -240.0
  6227. ]
  6228. },
  6229. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6230. "$type": "StylingComponentSaveData",
  6231. "SubStyle": ".method"
  6232. },
  6233. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6234. "$type": "PersistentIdComponentSaveData",
  6235. "PersistentId": "{D2B1C408-24C8-48BE-AE79-1102663ACFFB}"
  6236. }
  6237. }
  6238. }
  6239. },
  6240. {
  6241. "Key": {
  6242. "id": 737774109863
  6243. },
  6244. "Value": {
  6245. "ComponentData": {
  6246. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6247. "$type": "NodeSaveData"
  6248. },
  6249. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6250. "$type": "GeneralNodeTitleComponentSaveData",
  6251. "PaletteOverride": "MethodNodeTitlePalette"
  6252. },
  6253. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6254. "$type": "GeometrySaveData",
  6255. "Position": [
  6256. 1560.0,
  6257. -240.0
  6258. ]
  6259. },
  6260. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6261. "$type": "StylingComponentSaveData",
  6262. "SubStyle": ".method"
  6263. },
  6264. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6265. "$type": "PersistentIdComponentSaveData",
  6266. "PersistentId": "{76880D67-F89B-4390-B753-7DF3E12CC4AB}"
  6267. }
  6268. }
  6269. }
  6270. },
  6271. {
  6272. "Key": {
  6273. "id": 742069077159
  6274. },
  6275. "Value": {
  6276. "ComponentData": {
  6277. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6278. "$type": "NodeSaveData"
  6279. },
  6280. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6281. "$type": "GeneralNodeTitleComponentSaveData",
  6282. "PaletteOverride": "MethodNodeTitlePalette"
  6283. },
  6284. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6285. "$type": "GeometrySaveData",
  6286. "Position": [
  6287. 420.0,
  6288. 220.0
  6289. ]
  6290. },
  6291. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6292. "$type": "StylingComponentSaveData",
  6293. "SubStyle": ".method"
  6294. },
  6295. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6296. "$type": "PersistentIdComponentSaveData",
  6297. "PersistentId": "{8614FA68-F54A-41BB-BC8E-04C53DF1C1EA}"
  6298. }
  6299. }
  6300. }
  6301. },
  6302. {
  6303. "Key": {
  6304. "id": 746364044455
  6305. },
  6306. "Value": {
  6307. "ComponentData": {
  6308. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6309. "$type": "NodeSaveData"
  6310. },
  6311. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6312. "$type": "GeneralNodeTitleComponentSaveData",
  6313. "PaletteOverride": "GetVariableNodeTitlePalette"
  6314. },
  6315. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6316. "$type": "GeometrySaveData",
  6317. "Position": [
  6318. 1280.0,
  6319. 200.0
  6320. ]
  6321. },
  6322. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6323. "$type": "StylingComponentSaveData",
  6324. "SubStyle": ".getVariable"
  6325. },
  6326. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6327. "$type": "PersistentIdComponentSaveData",
  6328. "PersistentId": "{457513BE-66B3-45AF-84DF-E04EA9F76EE4}"
  6329. }
  6330. }
  6331. }
  6332. },
  6333. {
  6334. "Key": {
  6335. "id": 750659011751
  6336. },
  6337. "Value": {
  6338. "ComponentData": {
  6339. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6340. "$type": "NodeSaveData"
  6341. },
  6342. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6343. "$type": "GeneralNodeTitleComponentSaveData",
  6344. "PaletteOverride": "TestingNodeTitlePalette"
  6345. },
  6346. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6347. "$type": "GeometrySaveData",
  6348. "Position": [
  6349. 580.0,
  6350. -260.0
  6351. ]
  6352. },
  6353. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6354. "$type": "StylingComponentSaveData"
  6355. },
  6356. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6357. "$type": "PersistentIdComponentSaveData",
  6358. "PersistentId": "{585F9291-9ECA-4C58-846F-B47E9C38413C}"
  6359. }
  6360. }
  6361. }
  6362. },
  6363. {
  6364. "Key": {
  6365. "id": 754953979047
  6366. },
  6367. "Value": {
  6368. "ComponentData": {
  6369. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6370. "$type": "NodeSaveData"
  6371. },
  6372. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6373. "$type": "GeneralNodeTitleComponentSaveData",
  6374. "PaletteOverride": "TestingNodeTitlePalette"
  6375. },
  6376. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6377. "$type": "GeometrySaveData",
  6378. "Position": [
  6379. 1240.0,
  6380. -260.0
  6381. ]
  6382. },
  6383. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6384. "$type": "StylingComponentSaveData"
  6385. },
  6386. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6387. "$type": "PersistentIdComponentSaveData",
  6388. "PersistentId": "{7375D30F-E54B-44EB-BCEA-4DA45F4F7A96}"
  6389. }
  6390. }
  6391. }
  6392. },
  6393. {
  6394. "Key": {
  6395. "id": 759248946343
  6396. },
  6397. "Value": {
  6398. "ComponentData": {
  6399. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6400. "$type": "NodeSaveData"
  6401. },
  6402. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6403. "$type": "GeneralNodeTitleComponentSaveData",
  6404. "PaletteOverride": "TestingNodeTitlePalette"
  6405. },
  6406. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6407. "$type": "GeometrySaveData",
  6408. "Position": [
  6409. 2160.0,
  6410. 240.0
  6411. ]
  6412. },
  6413. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6414. "$type": "StylingComponentSaveData"
  6415. },
  6416. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6417. "$type": "PersistentIdComponentSaveData",
  6418. "PersistentId": "{27A63BDA-3B04-4018-8281-E305E0756567}"
  6419. }
  6420. }
  6421. }
  6422. },
  6423. {
  6424. "Key": {
  6425. "id": 763543913639
  6426. },
  6427. "Value": {
  6428. "ComponentData": {
  6429. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6430. "$type": "NodeSaveData"
  6431. },
  6432. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6433. "$type": "GeneralNodeTitleComponentSaveData",
  6434. "PaletteOverride": "DefaultNodeTitlePalette"
  6435. },
  6436. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6437. "$type": "GeometrySaveData",
  6438. "Position": [
  6439. -80.0,
  6440. -440.0
  6441. ]
  6442. },
  6443. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6444. "$type": "StylingComponentSaveData"
  6445. },
  6446. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6447. "$type": "PersistentIdComponentSaveData",
  6448. "PersistentId": "{DAA74EAC-A05A-46E3-918D-F3FC0379F12E}"
  6449. }
  6450. }
  6451. }
  6452. },
  6453. {
  6454. "Key": {
  6455. "id": 767838880935
  6456. },
  6457. "Value": {
  6458. "ComponentData": {
  6459. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  6460. "$type": "NodeSaveData"
  6461. },
  6462. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  6463. "$type": "GeneralNodeTitleComponentSaveData",
  6464. "PaletteOverride": "TestingNodeTitlePalette"
  6465. },
  6466. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  6467. "$type": "GeometrySaveData",
  6468. "Position": [
  6469. 2160.0,
  6470. 440.0
  6471. ]
  6472. },
  6473. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  6474. "$type": "StylingComponentSaveData"
  6475. },
  6476. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  6477. "$type": "PersistentIdComponentSaveData",
  6478. "PersistentId": "{FEF33EE4-9616-408C-A29D-9D73F509E42C}"
  6479. }
  6480. }
  6481. }
  6482. }
  6483. ],
  6484. "StatisticsHelper": {
  6485. "InstanceCounter": [
  6486. {
  6487. "Key": 586848928496184969,
  6488. "Value": 1
  6489. },
  6490. {
  6491. "Key": 1378708376016467228,
  6492. "Value": 1
  6493. },
  6494. {
  6495. "Key": 1567376580449011222,
  6496. "Value": 1
  6497. },
  6498. {
  6499. "Key": 1654819350295049870,
  6500. "Value": 1
  6501. },
  6502. {
  6503. "Key": 2132390995794010980,
  6504. "Value": 3
  6505. },
  6506. {
  6507. "Key": 2781147101807596453,
  6508. "Value": 3
  6509. },
  6510. {
  6511. "Key": 4053150093067829293,
  6512. "Value": 5
  6513. },
  6514. {
  6515. "Key": 4199610336680704683,
  6516. "Value": 1
  6517. },
  6518. {
  6519. "Key": 5488872792713483208,
  6520. "Value": 1
  6521. },
  6522. {
  6523. "Key": 6051304699885302849,
  6524. "Value": 4
  6525. },
  6526. {
  6527. "Key": 6085082255528869526,
  6528. "Value": 1
  6529. },
  6530. {
  6531. "Key": 7938438815433796325,
  6532. "Value": 1
  6533. },
  6534. {
  6535. "Key": 8509774054286391993,
  6536. "Value": 1
  6537. },
  6538. {
  6539. "Key": 10181512461692697578,
  6540. "Value": 1
  6541. },
  6542. {
  6543. "Key": 10204019744198319120,
  6544. "Value": 1
  6545. },
  6546. {
  6547. "Key": 11972406266979882095,
  6548. "Value": 1
  6549. },
  6550. {
  6551. "Key": 14927171254369344312,
  6552. "Value": 1
  6553. }
  6554. ]
  6555. }
  6556. }
  6557. }
  6558. }
  6559. }
  6560. }