| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676 |
- {
- "Type": "JsonSerialization",
- "Version": 1,
- "ClassName": "ScriptCanvasData",
- "ClassData": {
- "m_scriptCanvas": {
- "Id": {
- "id": 397015213496366
- },
- "Name": "LY_SC_UnitTest_ConstructionVariableOrder",
- "Components": {
- "Component_[7158070514821154273]": {
- "$type": "EditorGraphVariableManagerComponent",
- "Id": 7158070514821154273,
- "m_variableData": {
- "m_nameVariableMap": [
- {
- "Key": {
- "m_id": "{2C8EB045-9E42-43B7-B5AE-647276412D5C}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
- },
- "isNullPointer": false,
- "$type": "{4841CFF0-7A5C-519C-BD16-D3625E99605E} AZStd::vector",
- "value": [
- {},
- {},
- {}
- ],
- "label": "EntityIds"
- },
- "VariableId": {
- "m_id": "{2C8EB045-9E42-43B7-B5AE-647276412D5C}"
- },
- "VariableName": "EntityIds"
- }
- },
- {
- "Key": {
- "m_id": "{64D3F9E2-27DA-4D36-A8FF-DF79A5CDA90B}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}"
- },
- "isNullPointer": false,
- "$type": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7} AZStd::vector",
- "value": [
- true,
- {},
- true
- ],
- "label": "Booleans"
- },
- "VariableId": {
- "m_id": "{64D3F9E2-27DA-4D36-A8FF-DF79A5CDA90B}"
- },
- "VariableName": "Booleans"
- }
- },
- {
- "Key": {
- "m_id": "{7B4B5E91-7AFA-4F1A-8953-423DA087DE93}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{F31F64EA-E384-5536-ACD6-8F01849730FC}"
- },
- "isNullPointer": false,
- "$type": "{F31F64EA-E384-5536-ACD6-8F01849730FC} AZStd::vector",
- "value": [
- 1.0,
- 2.0,
- 3.0,
- 4.0
- ],
- "label": "Numbers"
- },
- "VariableId": {
- "m_id": "{7B4B5E91-7AFA-4F1A-8953-423DA087DE93}"
- },
- "VariableName": "Numbers"
- }
- },
- {
- "Key": {
- "m_id": "{A3E373C8-9147-4759-BFC8-5D665540A317}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{5CBE5640-DF5C-5A49-9195-D790881A0747}"
- },
- "isNullPointer": false,
- "$type": "{5CBE5640-DF5C-5A49-9195-D790881A0747} AZStd::vector",
- "value": [
- [
- 0.0,
- 0.0,
- 692788962263040.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 692788962263040.0,
- 0.0
- ],
- [
- 0.0,
- 0.0,
- 692788962263040.0,
- 0.0
- ]
- ],
- "label": "Quaternions"
- },
- "VariableId": {
- "m_id": "{A3E373C8-9147-4759-BFC8-5D665540A317}"
- },
- "VariableName": "Quaternions"
- }
- },
- {
- "Key": {
- "m_id": "{ADCE9F75-99EB-4600-9012-FC2FBFB123A5}"
- },
- "Value": {
- "Datum": {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}"
- },
- "isNullPointer": false,
- "$type": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292} AZStd::vector",
- "value": [
- [
- 5.0,
- 6.0
- ]
- ],
- "label": "Array<Vector2>"
- },
- "VariableId": {
- "m_id": "{ADCE9F75-99EB-4600-9012-FC2FBFB123A5}"
- },
- "VariableName": "Vector2s"
- }
- }
- ]
- }
- },
- "Component_[7577210020222483597]": {
- "$type": "EditorGraph",
- "Id": 7577210020222483597,
- "m_graphData": {
- "m_nodes": [
- {
- "Id": {
- "id": 397049573234734
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[11960110022175378839]": {
- "$type": "Print",
- "Id": 11960110022175378839,
- "Slots": [
- {
- "id": {
- "m_id": "{F25C0972-1061-4244-9709-1723A29859D7}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{E9E755E2-099F-4738-A914-7B6CBECB5EB9}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Value",
- "toolTip": "Value which replaces instances of {Value} in the resulting string.",
- "DisplayDataType": {
- "m_type": 3
- },
- "DisplayGroup": {
- "Value": 1015031923
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{258553DC-E6F0-4960-AC0F-9224F4FAAB76}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 3
- },
- "isNullPointer": false,
- "$type": "double",
- "value": 0.0,
- "label": "Value"
- }
- ],
- "m_arrayBindingMap": [
- {
- "Key": 1,
- "Value": {
- "m_id": "{E9E755E2-099F-4738-A914-7B6CBECB5EB9}"
- }
- }
- ],
- "m_unresolvedString": [
- {},
- {}
- ],
- "m_formatSlotMap": {
- "Value": {
- "m_id": "{E9E755E2-099F-4738-A914-7B6CBECB5EB9}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397071048071214
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[12222081240092108394]": {
- "$type": "GetVariableNode",
- "Id": 12222081240092108394,
- "Slots": [
- {
- "id": {
- "m_id": "{90D47110-5D2F-4A7E-BAAF-23FFA39861B2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{783FC127-76EC-4167-BFB7-468EF9DBBD12}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{596E1C74-91F6-4A3B-96B2-B87A858B2D85}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Array<Vector2>",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{ADCE9F75-99EB-4600-9012-FC2FBFB123A5}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{596E1C74-91F6-4A3B-96B2-B87A858B2D85}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 397040983300142
- },
- "Name": "SC-Node(ForEach)",
- "Components": {
- "Component_[12301469586620810667]": {
- "$type": "ForEach",
- "Id": 12301469586620810667,
- "Slots": [
- {
- "id": {
- "m_id": "{E18B1EC7-62AA-4C15-BB4C-A8341CDD0797}"
- },
- "DynamicTypeOverride": 2,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Source",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}"
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 3089028177
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{B7402944-FBFC-4497-888A-C65C34C81FA0}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Signaled upon node entry",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{742AF14E-0FF5-4523-B7B2-D3A7F05DB530}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Break",
- "toolTip": "Stops the iteration when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{D2C8ADCD-E479-46CE-8D14-3B0FD062570D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Each",
- "toolTip": "Signalled after each element of the container",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{A05BB6D0-B1C1-4A76-8BF3-A3ABD89246AD}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Finished",
- "toolTip": "The container has been fully iterated over",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{335D887D-D6B5-41B0-9844-A48A8F27E1B6}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Boolean",
- "DisplayDataType": {
- "m_type": 0
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}"
- },
- "isNullPointer": true,
- "label": "Source"
- }
- ],
- "m_sourceSlot": {
- "m_id": "{E18B1EC7-62AA-4C15-BB4C-A8341CDD0797}"
- },
- "m_previousTypeId": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}",
- "m_propertySlots": [
- {
- "m_propertySlotId": {
- "m_id": "{335D887D-D6B5-41B0-9844-A48A8F27E1B6}"
- },
- "m_propertyType": {
- "m_type": 0
- },
- "m_propertyName": "Boolean"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 397036688332846
- },
- "Name": "SC-Node(ForEach)",
- "Components": {
- "Component_[14087010268805249554]": {
- "$type": "ForEach",
- "Id": 14087010268805249554,
- "Slots": [
- {
- "id": {
- "m_id": "{66CF1FE1-AFF2-4AB0-91AC-96F574472E68}"
- },
- "DynamicTypeOverride": 2,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Source",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 3089028177
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{BA152CBB-CA38-44B1-9A3B-56CA0D891ED4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Signaled upon node entry",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{5B954558-90EE-48C1-993B-309E63CB5601}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Break",
- "toolTip": "Stops the iteration when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{36D09A36-0209-4598-A908-C4F451562E2D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Each",
- "toolTip": "Signalled after each element of the container",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{BC8D8EC5-CF6A-4049-818A-94BD01D8223C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Finished",
- "toolTip": "The container has been fully iterated over",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{C82904B0-1FD0-4C83-B6F1-DBEC23A33139}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "EntityID",
- "DisplayDataType": {
- "m_type": 1
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
- },
- "isNullPointer": true,
- "label": "Source"
- }
- ],
- "m_sourceSlot": {
- "m_id": "{66CF1FE1-AFF2-4AB0-91AC-96F574472E68}"
- },
- "m_previousTypeId": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}",
- "m_propertySlots": [
- {
- "m_propertySlotId": {
- "m_id": "{C82904B0-1FD0-4C83-B6F1-DBEC23A33139}"
- },
- "m_propertyType": {
- "m_type": 1
- },
- "m_propertyName": "EntityID"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 397066753103918
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[14101688029294030815]": {
- "$type": "GetVariableNode",
- "Id": 14101688029294030815,
- "Slots": [
- {
- "id": {
- "m_id": "{F36F5AD4-A88E-4C11-9C8D-73D221E990E3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{2067A23A-C7A7-4AE2-9437-E76AC21761EB}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{2A195FF7-1922-465E-9B02-9421DD017A12}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Array<Boolean>",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{B505B05D-57BF-5A45-9113-B3A2784E2CD7}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{64D3F9E2-27DA-4D36-A8FF-DF79A5CDA90B}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{2A195FF7-1922-465E-9B02-9421DD017A12}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 397023803430958
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[14235575556659791473]": {
- "$type": "Print",
- "Id": 14235575556659791473,
- "Slots": [
- {
- "id": {
- "m_id": "{8E6B7183-15FC-4DAE-86B7-64E01B0639EB}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{C016E255-56DF-4D0D-9491-D8047BB21B16}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Value",
- "toolTip": "Value which replaces instances of {Value} in the resulting string.",
- "DisplayDataType": {
- "m_type": 1
- },
- "DisplayGroup": {
- "Value": 1015031923
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{2A6CFEB5-0105-4708-BC94-F666EE690A43}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 1
- },
- "isNullPointer": false,
- "$type": "EntityId",
- "value": {
- "id": 2901262558
- },
- "label": "Value"
- }
- ],
- "m_arrayBindingMap": [
- {
- "Key": 1,
- "Value": {
- "m_id": "{C016E255-56DF-4D0D-9491-D8047BB21B16}"
- }
- }
- ],
- "m_unresolvedString": [
- {},
- {}
- ],
- "m_formatSlotMap": {
- "Value": {
- "m_id": "{C016E255-56DF-4D0D-9491-D8047BB21B16}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397045278267438
- },
- "Name": "SC-Node(Mark Complete)",
- "Components": {
- "Component_[14295903039870693436]": {
- "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
- "Id": 14295903039870693436,
- "Slots": [
- {
- "isVisibile": false,
- "id": {
- "m_id": "{1348F682-9EB5-4C1D-B20A-AD3F759BC977}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "EntityID: 0",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{FB534DFB-5A29-4D39-B58D-4097D42D0EEE}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Report",
- "toolTip": "additional notes for the test report",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{24AFA019-EB67-4D59-9F2C-E14BF9BB459D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{18FE7EEA-4C4D-4B5B-9A2A-58DFCE5C177A}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 1
- },
- "isNullPointer": false,
- "$type": "EntityId",
- "value": {
- "id": 4276206253
- }
- },
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 5
- },
- "isNullPointer": false,
- "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
- "value": "",
- "label": "Report"
- }
- ],
- "methodType": 2,
- "methodName": "Mark Complete",
- "className": "Unit Testing",
- "resultSlotIDs": [
- {}
- ],
- "prettyClassName": "Unit Testing"
- }
- }
- },
- {
- "Id": {
- "id": 397028098398254
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[14638549579008962359]": {
- "$type": "GetVariableNode",
- "Id": 14638549579008962359,
- "Slots": [
- {
- "id": {
- "m_id": "{1345F753-ABF2-435B-BBC9-E64C9AB5409B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{33336414-AC53-4823-883E-A77EA7D9B01B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{7D14F7E1-F6EC-47A3-B074-DEF2FAC47EB9}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Array<EntityId>",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{4841CFF0-7A5C-519C-BD16-D3625E99605E}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{2C8EB045-9E42-43B7-B5AE-647276412D5C}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{7D14F7E1-F6EC-47A3-B074-DEF2FAC47EB9}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 397062458136622
- },
- "Name": "51591044726829",
- "Components": {
- "Component_[15506004121303538892]": {
- "$type": "Start",
- "Id": 15506004121303538892,
- "Slots": [
- {
- "id": {
- "m_id": "{4B3F5348-DF91-4812-8B5A-B10770EAC60C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled when the entity that owns this graph is fully activated.",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 397075343038510
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[18063507202503962198]": {
- "$type": "Print",
- "Id": 18063507202503962198,
- "Slots": [
- {
- "id": {
- "m_id": "{5ADD9482-A8A4-4B8C-826B-C9BD5CBF8800}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{EC819EB4-3D82-40AA-A7D9-4C325BCD27A6}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Value",
- "toolTip": "Value which replaces instances of {Value} in the resulting string.",
- "DisplayDataType": {
- "m_type": 9
- },
- "DisplayGroup": {
- "Value": 1015031923
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{51481A7E-A451-4DD6-B089-CD79FA0A7E98}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 9
- },
- "isNullPointer": false,
- "$type": "Vector2",
- "value": [
- 0.0,
- 0.0
- ],
- "label": "Value"
- }
- ],
- "m_arrayBindingMap": [
- {
- "Key": 1,
- "Value": {
- "m_id": "{EC819EB4-3D82-40AA-A7D9-4C325BCD27A6}"
- }
- }
- ],
- "m_unresolvedString": [
- {},
- {}
- ],
- "m_formatSlotMap": {
- "Value": {
- "m_id": "{EC819EB4-3D82-40AA-A7D9-4C325BCD27A6}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397058163169326
- },
- "Name": "SC-Node(Print)",
- "Components": {
- "Component_[18202709381405516213]": {
- "$type": "Print",
- "Id": 18202709381405516213,
- "Slots": [
- {
- "id": {
- "m_id": "{74A57421-FA36-4ADB-8490-FF694A77082C}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Input signal",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{05071926-85C8-4360-A0F0-A2E3E8DA2EF3}"
- },
- "DynamicTypeOverride": 3,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Value",
- "toolTip": "Value which replaces instances of {Value} in the resulting string.",
- "DisplayDataType": {
- "m_type": 0
- },
- "DisplayGroup": {
- "Value": 1015031923
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{C5C538FB-0E5B-4F27-9D58-D003362FDD05}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 0
- },
- "isNullPointer": false,
- "$type": "bool",
- "value": false,
- "label": "Value"
- }
- ],
- "m_arrayBindingMap": [
- {
- "Key": 1,
- "Value": {
- "m_id": "{05071926-85C8-4360-A0F0-A2E3E8DA2EF3}"
- }
- }
- ],
- "m_unresolvedString": [
- {},
- {}
- ],
- "m_formatSlotMap": {
- "Value": {
- "m_id": "{05071926-85C8-4360-A0F0-A2E3E8DA2EF3}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397053868202030
- },
- "Name": "SC-Node(ForEach)",
- "Components": {
- "Component_[3967702083936577928]": {
- "$type": "ForEach",
- "Id": 3967702083936577928,
- "Slots": [
- {
- "id": {
- "m_id": "{AEF52370-2398-437E-BF87-025398809107}"
- },
- "DynamicTypeOverride": 2,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Source",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F31F64EA-E384-5536-ACD6-8F01849730FC}"
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 3089028177
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{0DA074B5-3861-407D-AA8A-83E957D55D6B}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Signaled upon node entry",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{28DD0ECC-1D6A-4F6F-B584-E664AD56EB08}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Break",
- "toolTip": "Stops the iteration when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{372D9AF1-8358-4185-AEB7-7A3AD0BE40F4}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Each",
- "toolTip": "Signalled after each element of the container",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{F28C1A9B-A175-4B41-ACC4-858E0A6A740D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Finished",
- "toolTip": "The container has been fully iterated over",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{DC79F716-ACFA-41C6-86F6-8D0ABB9AF147}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Number",
- "DisplayDataType": {
- "m_type": 3
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{F31F64EA-E384-5536-ACD6-8F01849730FC}"
- },
- "isNullPointer": true,
- "label": "Source"
- }
- ],
- "m_sourceSlot": {
- "m_id": "{AEF52370-2398-437E-BF87-025398809107}"
- },
- "m_previousTypeId": "{F31F64EA-E384-5536-ACD6-8F01849730FC}",
- "m_propertySlots": [
- {
- "m_propertySlotId": {
- "m_id": "{DC79F716-ACFA-41C6-86F6-8D0ABB9AF147}"
- },
- "m_propertyType": {
- "m_type": 3
- },
- "m_propertyName": "Number"
- }
- ]
- }
- }
- },
- {
- "Id": {
- "id": 397032393365550
- },
- "Name": "SC Node(GetVariable)",
- "Components": {
- "Component_[4452745086049786499]": {
- "$type": "GetVariableNode",
- "Id": 4452745086049786499,
- "Slots": [
- {
- "id": {
- "m_id": "{BCD96955-2A9D-4143-94D2-ADC1BDA12A95}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{FFB01C74-1B5B-466B-A65B-62CD4F675C1D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Out",
- "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{5E9AA6F0-B049-4A2D-97B0-71EACD753772}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Array<Number>",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{F31F64EA-E384-5536-ACD6-8F01849730FC}"
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "m_variableId": {
- "m_id": "{7B4B5E91-7AFA-4F1A-8953-423DA087DE93}"
- },
- "m_variableDataOutSlotId": {
- "m_id": "{5E9AA6F0-B049-4A2D-97B0-71EACD753772}"
- }
- }
- }
- },
- {
- "Id": {
- "id": 397019508463662
- },
- "Name": "SC-Node(ForEach)",
- "Components": {
- "Component_[9912632340617702572]": {
- "$type": "ForEach",
- "Id": 9912632340617702572,
- "Slots": [
- {
- "id": {
- "m_id": "{7DEA1CB9-17D0-4536-928D-D176BD792983}"
- },
- "DynamicTypeOverride": 2,
- "contracts": [
- {
- "$type": "SlotTypeContract"
- },
- null
- ],
- "slotName": "Source",
- "DisplayDataType": {
- "m_type": 4,
- "m_azType": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}"
- },
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 2
- },
- "DynamicGroup": {
- "Value": 3089028177
- },
- "DataType": 1
- },
- {
- "id": {
- "m_id": "{0887099F-8A7A-49E4-83EB-6C5B29A0A6B2}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "In",
- "toolTip": "Signaled upon node entry",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{2319DFEB-E0A1-4AF1-AF4C-1D44DB532F1D}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Break",
- "toolTip": "Stops the iteration when signaled",
- "Descriptor": {
- "ConnectionType": 1,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{12B01A80-7020-4391-A105-EEAEC81701A3}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Each",
- "toolTip": "Signalled after each element of the container",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{A50A9E23-4AB0-4FBF-B990-4D61AFD6CC10}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Finished",
- "toolTip": "The container has been fully iterated over",
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 1
- }
- },
- {
- "id": {
- "m_id": "{27B1CE0B-3498-42AF-AA2E-5F188F7F4C7E}"
- },
- "contracts": [
- {
- "$type": "SlotTypeContract"
- }
- ],
- "slotName": "Vector2",
- "DisplayDataType": {
- "m_type": 9
- },
- "Descriptor": {
- "ConnectionType": 2,
- "SlotType": 2
- },
- "DataType": 1
- }
- ],
- "Datums": [
- {
- "isOverloadedStorage": false,
- "scriptCanvasType": {
- "m_type": 4,
- "m_azType": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}"
- },
- "isNullPointer": true,
- "label": "Source"
- }
- ],
- "m_sourceSlot": {
- "m_id": "{7DEA1CB9-17D0-4536-928D-D176BD792983}"
- },
- "m_previousTypeId": "{82AC1A71-2EA7-5FBC-9B3B-72B1CCFDD292}",
- "m_propertySlots": [
- {
- "m_propertySlotId": {
- "m_id": "{27B1CE0B-3498-42AF-AA2E-5F188F7F4C7E}"
- },
- "m_propertyType": {
- "m_type": 9
- },
- "m_propertyName": "Vector2"
- }
- ]
- }
- }
- }
- ],
- "m_connections": [
- {
- "Id": {
- "id": 397079638005806
- },
- "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[5571701479409477945]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 5571701479409477945,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397062458136622
- },
- "slotId": {
- "m_id": "{4B3F5348-DF91-4812-8B5A-B10770EAC60C}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397032393365550
- },
- "slotId": {
- "m_id": "{BCD96955-2A9D-4143-94D2-ADC1BDA12A95}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397083932973102
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(For Each: In)",
- "Components": {
- "Component_[715787081012548626]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 715787081012548626,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397032393365550
- },
- "slotId": {
- "m_id": "{FFB01C74-1B5B-466B-A65B-62CD4F675C1D}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397053868202030
- },
- "slotId": {
- "m_id": "{0DA074B5-3861-407D-AA8A-83E957D55D6B}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397088227940398
- },
- "Name": "srcEndpoint=(Get Variable: Array<Number>), destEndpoint=(For Each: Source)",
- "Components": {
- "Component_[8902487445655982551]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 8902487445655982551,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397032393365550
- },
- "slotId": {
- "m_id": "{5E9AA6F0-B049-4A2D-97B0-71EACD753772}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397053868202030
- },
- "slotId": {
- "m_id": "{AEF52370-2398-437E-BF87-025398809107}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397092522907694
- },
- "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Print: In)",
- "Components": {
- "Component_[13346591333845244211]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 13346591333845244211,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397053868202030
- },
- "slotId": {
- "m_id": "{372D9AF1-8358-4185-AEB7-7A3AD0BE40F4}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397049573234734
- },
- "slotId": {
- "m_id": "{F25C0972-1061-4244-9709-1723A29859D7}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397096817874990
- },
- "Name": "srcEndpoint=(For Each: Number), destEndpoint=(Print: Value)",
- "Components": {
- "Component_[8013532595952022162]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 8013532595952022162,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397053868202030
- },
- "slotId": {
- "m_id": "{DC79F716-ACFA-41C6-86F6-8D0ABB9AF147}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397049573234734
- },
- "slotId": {
- "m_id": "{E9E755E2-099F-4738-A914-7B6CBECB5EB9}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397101112842286
- },
- "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[9983149622283034246]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 9983149622283034246,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397053868202030
- },
- "slotId": {
- "m_id": "{F28C1A9B-A175-4B41-ACC4-858E0A6A740D}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397066753103918
- },
- "slotId": {
- "m_id": "{F36F5AD4-A88E-4C11-9C8D-73D221E990E3}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397105407809582
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(For Each: In)",
- "Components": {
- "Component_[1863484524003976339]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 1863484524003976339,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397066753103918
- },
- "slotId": {
- "m_id": "{2067A23A-C7A7-4AE2-9437-E76AC21761EB}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397040983300142
- },
- "slotId": {
- "m_id": "{B7402944-FBFC-4497-888A-C65C34C81FA0}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397109702776878
- },
- "Name": "srcEndpoint=(Get Variable: Array<Boolean>), destEndpoint=(For Each: Source)",
- "Components": {
- "Component_[14740264805921675386]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 14740264805921675386,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397066753103918
- },
- "slotId": {
- "m_id": "{2A195FF7-1922-465E-9B02-9421DD017A12}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397040983300142
- },
- "slotId": {
- "m_id": "{E18B1EC7-62AA-4C15-BB4C-A8341CDD0797}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397113997744174
- },
- "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Print: In)",
- "Components": {
- "Component_[868361819245568268]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 868361819245568268,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397040983300142
- },
- "slotId": {
- "m_id": "{D2C8ADCD-E479-46CE-8D14-3B0FD062570D}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397058163169326
- },
- "slotId": {
- "m_id": "{74A57421-FA36-4ADB-8490-FF694A77082C}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397118292711470
- },
- "Name": "srcEndpoint=(For Each: Boolean), destEndpoint=(Print: Value)",
- "Components": {
- "Component_[16507977307417586518]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 16507977307417586518,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397040983300142
- },
- "slotId": {
- "m_id": "{335D887D-D6B5-41B0-9844-A48A8F27E1B6}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397058163169326
- },
- "slotId": {
- "m_id": "{05071926-85C8-4360-A0F0-A2E3E8DA2EF3}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397122587678766
- },
- "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[12031356535841452264]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 12031356535841452264,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397040983300142
- },
- "slotId": {
- "m_id": "{A05BB6D0-B1C1-4A76-8BF3-A3ABD89246AD}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397071048071214
- },
- "slotId": {
- "m_id": "{90D47110-5D2F-4A7E-BAAF-23FFA39861B2}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397126882646062
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(For Each: In)",
- "Components": {
- "Component_[17910946994081726956]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 17910946994081726956,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397071048071214
- },
- "slotId": {
- "m_id": "{783FC127-76EC-4167-BFB7-468EF9DBBD12}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397019508463662
- },
- "slotId": {
- "m_id": "{0887099F-8A7A-49E4-83EB-6C5B29A0A6B2}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397131177613358
- },
- "Name": "srcEndpoint=(Get Variable: Array<Vector2>), destEndpoint=(For Each: Source)",
- "Components": {
- "Component_[17461969215326067556]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 17461969215326067556,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397071048071214
- },
- "slotId": {
- "m_id": "{596E1C74-91F6-4A3B-96B2-B87A858B2D85}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397019508463662
- },
- "slotId": {
- "m_id": "{7DEA1CB9-17D0-4536-928D-D176BD792983}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397135472580654
- },
- "Name": "srcEndpoint=(For Each: Vector2), destEndpoint=(Print: Value)",
- "Components": {
- "Component_[6493147374707499937]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 6493147374707499937,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397019508463662
- },
- "slotId": {
- "m_id": "{27B1CE0B-3498-42AF-AA2E-5F188F7F4C7E}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397075343038510
- },
- "slotId": {
- "m_id": "{EC819EB4-3D82-40AA-A7D9-4C325BCD27A6}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397139767547950
- },
- "Name": "srcEndpoint=(For Each: Each), destEndpoint=(Print: In)",
- "Components": {
- "Component_[10784252551790241364]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 10784252551790241364,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397019508463662
- },
- "slotId": {
- "m_id": "{12B01A80-7020-4391-A105-EEAEC81701A3}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397075343038510
- },
- "slotId": {
- "m_id": "{5ADD9482-A8A4-4B8C-826B-C9BD5CBF8800}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397144062515246
- },
- "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Get Variable: In)",
- "Components": {
- "Component_[6452224276655609686]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 6452224276655609686,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397019508463662
- },
- "slotId": {
- "m_id": "{A50A9E23-4AB0-4FBF-B990-4D61AFD6CC10}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397028098398254
- },
- "slotId": {
- "m_id": "{1345F753-ABF2-435B-BBC9-E64C9AB5409B}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397148357482542
- },
- "Name": "srcEndpoint=(Get Variable: Array<EntityId>), destEndpoint=(For Each: Source)",
- "Components": {
- "Component_[5038681043748021954]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 5038681043748021954,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397028098398254
- },
- "slotId": {
- "m_id": "{7D14F7E1-F6EC-47A3-B074-DEF2FAC47EB9}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397036688332846
- },
- "slotId": {
- "m_id": "{66CF1FE1-AFF2-4AB0-91AC-96F574472E68}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397152652449838
- },
- "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(For Each: In)",
- "Components": {
- "Component_[2202914709943226429]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 2202914709943226429,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397028098398254
- },
- "slotId": {
- "m_id": "{33336414-AC53-4823-883E-A77EA7D9B01B}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397036688332846
- },
- "slotId": {
- "m_id": "{BA152CBB-CA38-44B1-9A3B-56CA0D891ED4}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397156947417134
- },
- "Name": "srcEndpoint=(For Each: EntityID), destEndpoint=(Print: Value)",
- "Components": {
- "Component_[2656671889405838525]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 2656671889405838525,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397036688332846
- },
- "slotId": {
- "m_id": "{C82904B0-1FD0-4C83-B6F1-DBEC23A33139}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397023803430958
- },
- "slotId": {
- "m_id": "{C016E255-56DF-4D0D-9491-D8047BB21B16}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397161242384430
- },
- "Name": "srcEndpoint=(For Each: Finished), destEndpoint=(Print: In)",
- "Components": {
- "Component_[16435852843998336634]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 16435852843998336634,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397036688332846
- },
- "slotId": {
- "m_id": "{BC8D8EC5-CF6A-4049-818A-94BD01D8223C}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397023803430958
- },
- "slotId": {
- "m_id": "{8E6B7183-15FC-4DAE-86B7-64E01B0639EB}"
- }
- }
- }
- }
- },
- {
- "Id": {
- "id": 397165537351726
- },
- "Name": "srcEndpoint=(Print: Out), destEndpoint=(Mark Complete: In)",
- "Components": {
- "Component_[8909440234871081506]": {
- "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
- "Id": 8909440234871081506,
- "sourceEndpoint": {
- "nodeId": {
- "id": 397023803430958
- },
- "slotId": {
- "m_id": "{2A6CFEB5-0105-4708-BC94-F666EE690A43}"
- }
- },
- "targetEndpoint": {
- "nodeId": {
- "id": 397045278267438
- },
- "slotId": {
- "m_id": "{24AFA019-EB67-4D59-9F2C-E14BF9BB459D}"
- }
- }
- }
- }
- }
- ]
- },
- "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
- "versionData": {
- "_grammarVersion": 1,
- "_runtimeVersion": 1,
- "_fileVersion": 1
- },
- "m_variableCounter": 8,
- "GraphCanvasData": [
- {
- "Key": {
- "id": 397015213496366
- },
- "Value": {
- "ComponentData": {
- "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
- "$type": "SceneComponentSaveData",
- "ViewParams": {
- "Scale": 0.8798882,
- "AnchorX": -721.6826171875,
- "AnchorY": 87.51112365722656
- }
- }
- }
- }
- },
- {
- "Key": {
- "id": 397019508463662
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "DefaultNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 200.0,
- 720.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{A6E861EB-876D-48BC-B3D8-159E288C7A6B}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397023803430958
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 600.0,
- 980.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{68B4BD23-8740-4F9F-B121-0EE98E76087B}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397028098398254
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "GetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -160.0,
- 1000.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{4E0AD360-2952-41EE-BC2B-4D51FE793D31}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397032393365550
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "GetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -160.0,
- 280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8FC75614-D87D-4397-9BD5-856F6974B78B}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397036688332846
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "DefaultNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 240.0,
- 980.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{46D1EDF1-DBFD-49C7-A2AC-4D04F03D1DE5}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397040983300142
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "DefaultNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 220.0,
- 500.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{57E5BA07-51D7-4669-B479-DC8787822A02}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397045278267438
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "MethodNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 960.0,
- 980.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".method"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{1DEDA459-40DF-4134-B31D-74CCCA02263E}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397049573234734
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 600.0,
- 160.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{4916F913-9C58-476A-8E76-98D4D753CC19}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397053868202030
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "DefaultNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 220.0,
- 240.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{455600E1-A7C5-4EE3-95FF-7C5760A09A76}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397058163169326
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 560.0,
- 480.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8EB278DF-8E08-4BBB-974F-4BE7F6AE25C0}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397062458136622
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "DefaultNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -380.0,
- 280.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{5C8951C3-5105-4D26-8FB6-508ADDAD9431}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397066753103918
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "GetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -160.0,
- 520.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{562AB670-3CF2-4968-A2CD-9164D2F3BC4F}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397071048071214
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "GetVariableNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- -160.0,
- 760.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData",
- "SubStyle": ".getVariable"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{8904D609-9F9F-4A23-A6C3-201D45EA8169}"
- }
- }
- }
- },
- {
- "Key": {
- "id": 397075343038510
- },
- "Value": {
- "ComponentData": {
- "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
- "$type": "NodeSaveData"
- },
- "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
- "$type": "GeneralNodeTitleComponentSaveData",
- "PaletteOverride": "StringNodeTitlePalette"
- },
- "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
- "$type": "GeometrySaveData",
- "Position": [
- 540.0,
- 720.0
- ]
- },
- "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
- "$type": "StylingComponentSaveData"
- },
- "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
- "$type": "PersistentIdComponentSaveData",
- "PersistentId": "{BE78BE18-D851-4790-86F5-F216BE190DFB}"
- }
- }
- }
- }
- ],
- "StatisticsHelper": {
- "InstanceCounter": [
- {
- "Key": 4199610336680704683,
- "Value": 1
- },
- {
- "Key": 6840657073857873079,
- "Value": 1
- },
- {
- "Key": 7218533992763007304,
- "Value": 1
- },
- {
- "Key": 10032219312024937721,
- "Value": 1
- },
- {
- "Key": 10181512461692697578,
- "Value": 4
- },
- {
- "Key": 10684225535275896474,
- "Value": 4
- },
- {
- "Key": 12475135270008250831,
- "Value": 1
- },
- {
- "Key": 16662188307754720400,
- "Value": 1
- }
- ]
- }
- }
- }
- }
- }
- }
|