AutoComponent_RPC.scriptcanvas 283 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 624176937256
  9. },
  10. "Name": "AutoComponent_RPC",
  11. "Components": {
  12. "Component_[6790521910463264404]": {
  13. "$type": "EditorGraphVariableManagerComponent",
  14. "Id": 6790521910463264404,
  15. "m_variableData": {
  16. "m_nameVariableMap": [
  17. {
  18. "Key": {
  19. "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
  20. },
  21. "Value": {
  22. "Datum": {
  23. "isOverloadedStorage": false,
  24. "scriptCanvasType": {
  25. "m_type": 3
  26. },
  27. "isNullPointer": false,
  28. "$type": "double",
  29. "value": 0.0
  30. },
  31. "VariableId": {
  32. "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
  33. },
  34. "VariableName": "PlayerNumber"
  35. }
  36. },
  37. {
  38. "Key": {
  39. "m_id": "{C7A14632-3AC3-4C19-A646-2AC262A7A6D5}"
  40. },
  41. "Value": {
  42. "Datum": {
  43. "isOverloadedStorage": false,
  44. "scriptCanvasType": {
  45. "m_type": 3
  46. },
  47. "isNullPointer": false,
  48. "$type": "double",
  49. "value": 42.0
  50. },
  51. "VariableId": {
  52. "m_id": "{C7A14632-3AC3-4C19-A646-2AC262A7A6D5}"
  53. },
  54. "VariableName": "AutonomousToAuthorityNumber"
  55. }
  56. }
  57. ]
  58. }
  59. },
  60. "Component_[9755768666831861951]": {
  61. "$type": "EditorGraph",
  62. "Id": 9755768666831861951,
  63. "m_graphData": {
  64. "m_nodes": [
  65. {
  66. "Id": {
  67. "id": 731551119656
  68. },
  69. "Name": "SC-EventNode(AuthorityToAutonomous_PlayerNumber Notify Event)",
  70. "Components": {
  71. "Component_[10688723972761024546]": {
  72. "$type": "AzEventHandler",
  73. "Id": 10688723972761024546,
  74. "Slots": [
  75. {
  76. "id": {
  77. "m_id": "{46E6B649-CAA4-4318-960D-5E4854E21BB2}"
  78. },
  79. "contracts": [
  80. {
  81. "$type": "SlotTypeContract"
  82. },
  83. {
  84. "$type": "ConnectionLimitContract",
  85. "limit": 1
  86. },
  87. {
  88. "$type": "RestrictedNodeContract",
  89. "m_nodeId": {
  90. "id": 701486348584
  91. }
  92. }
  93. ],
  94. "slotName": "Connect",
  95. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  96. "Descriptor": {
  97. "ConnectionType": 1,
  98. "SlotType": 1
  99. }
  100. },
  101. {
  102. "id": {
  103. "m_id": "{221AFED2-BD9E-4CFF-8EC7-75ABA019134D}"
  104. },
  105. "contracts": [
  106. {
  107. "$type": "SlotTypeContract"
  108. }
  109. ],
  110. "slotName": "Disconnect",
  111. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  112. "Descriptor": {
  113. "ConnectionType": 1,
  114. "SlotType": 1
  115. }
  116. },
  117. {
  118. "id": {
  119. "m_id": "{D139A8D2-F57B-4EBF-B7F8-1D65C2D97C25}"
  120. },
  121. "contracts": [
  122. {
  123. "$type": "SlotTypeContract"
  124. }
  125. ],
  126. "slotName": "On Connected",
  127. "toolTip": "Signaled when a connection has taken place.",
  128. "Descriptor": {
  129. "ConnectionType": 2,
  130. "SlotType": 1
  131. }
  132. },
  133. {
  134. "id": {
  135. "m_id": "{3F47A140-182E-4B32-AE14-467555A6640A}"
  136. },
  137. "contracts": [
  138. {
  139. "$type": "SlotTypeContract"
  140. }
  141. ],
  142. "slotName": "On Disconnected",
  143. "toolTip": "Signaled when this event handler is disconnected.",
  144. "Descriptor": {
  145. "ConnectionType": 2,
  146. "SlotType": 1
  147. }
  148. },
  149. {
  150. "id": {
  151. "m_id": "{586BE222-2DEA-4E08-968F-07CA4EB96C54}"
  152. },
  153. "contracts": [
  154. {
  155. "$type": "SlotTypeContract"
  156. }
  157. ],
  158. "slotName": "OnEvent",
  159. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  160. "Descriptor": {
  161. "ConnectionType": 2,
  162. "SlotType": 1
  163. },
  164. "IsLatent": true
  165. },
  166. {
  167. "id": {
  168. "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
  169. },
  170. "contracts": [
  171. {
  172. "$type": "SlotTypeContract"
  173. }
  174. ],
  175. "slotName": "player_number",
  176. "DisplayDataType": {
  177. "m_type": 3
  178. },
  179. "Descriptor": {
  180. "ConnectionType": 2,
  181. "SlotType": 2
  182. },
  183. "DataType": 1
  184. },
  185. {
  186. "id": {
  187. "m_id": "{8C7E88EA-8FEE-45D0-9A2E-78BC4A18F508}"
  188. },
  189. "contracts": [
  190. {
  191. "$type": "SlotTypeContract"
  192. },
  193. {
  194. "$type": "ConnectionLimitContract",
  195. "limit": 1
  196. },
  197. {
  198. "$type": "RestrictedNodeContract",
  199. "m_nodeId": {
  200. "id": 701486348584
  201. }
  202. }
  203. ],
  204. "slotName": "AuthorityToAutonomous_PlayerNumber Notify Event",
  205. "Descriptor": {
  206. "ConnectionType": 1,
  207. "SlotType": 2
  208. },
  209. "DataType": 1
  210. }
  211. ],
  212. "Datums": [
  213. {
  214. "scriptCanvasType": {
  215. "m_type": 4,
  216. "m_azType": "{DB613438-34F0-5B2E-A413-77424F4254CD}"
  217. },
  218. "isNullPointer": true,
  219. "label": "AuthorityToAutonomous_PlayerNumber Notify Event"
  220. }
  221. ],
  222. "m_azEventEntry": {
  223. "AzEventEntryData_v0": {
  224. "eventName": "AuthorityToAutonomous_PlayerNumber Notify Event",
  225. "parameterSlotIds": [
  226. {
  227. "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
  228. }
  229. ],
  230. "azEventInputSlotId": {
  231. "m_id": "{8C7E88EA-8FEE-45D0-9A2E-78BC4A18F508}"
  232. }
  233. }
  234. }
  235. }
  236. }
  237. },
  238. {
  239. "Id": {
  240. "id": 714371250472
  241. },
  242. "Name": "SC-Node(IsNetEntityRoleAuthority)",
  243. "Components": {
  244. "Component_[11076422520044215441]": {
  245. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  246. "Id": 11076422520044215441,
  247. "Slots": [
  248. {
  249. "id": {
  250. "m_id": "{4EAB8D16-C0B4-44E1-885D-8E6754CD1A55}"
  251. },
  252. "contracts": [
  253. {
  254. "$type": "SlotTypeContract"
  255. }
  256. ],
  257. "slotName": "EntityId: 0",
  258. "Descriptor": {
  259. "ConnectionType": 1,
  260. "SlotType": 2
  261. },
  262. "DataType": 1
  263. },
  264. {
  265. "id": {
  266. "m_id": "{B6C4BE5E-CDE4-4EC7-98D0-A019CD80041C}"
  267. },
  268. "contracts": [
  269. {
  270. "$type": "SlotTypeContract"
  271. }
  272. ],
  273. "slotName": "In",
  274. "Descriptor": {
  275. "ConnectionType": 1,
  276. "SlotType": 1
  277. }
  278. },
  279. {
  280. "id": {
  281. "m_id": "{1071F455-D5A0-4C7A-AF91-648A0F197885}"
  282. },
  283. "contracts": [
  284. {
  285. "$type": "SlotTypeContract"
  286. }
  287. ],
  288. "slotName": "Out",
  289. "Descriptor": {
  290. "ConnectionType": 2,
  291. "SlotType": 1
  292. }
  293. },
  294. {
  295. "id": {
  296. "m_id": "{BA87B4ED-9A52-4A0D-8920-CD0ED4E839EA}"
  297. },
  298. "contracts": [
  299. {
  300. "$type": "SlotTypeContract"
  301. }
  302. ],
  303. "slotName": "Is Role Authority",
  304. "DisplayDataType": {
  305. "m_type": 0
  306. },
  307. "Descriptor": {
  308. "ConnectionType": 2,
  309. "SlotType": 2
  310. },
  311. "DataType": 1
  312. }
  313. ],
  314. "Datums": [
  315. {
  316. "isOverloadedStorage": false,
  317. "scriptCanvasType": {
  318. "m_type": 1
  319. },
  320. "isNullPointer": false,
  321. "$type": "EntityId",
  322. "value": {
  323. "id": 2901262558
  324. },
  325. "label": "EntityId: 0"
  326. }
  327. ],
  328. "methodType": 2,
  329. "methodName": "IsNetEntityRoleAuthority",
  330. "className": "NetBindComponent",
  331. "resultSlotIDs": [
  332. {}
  333. ],
  334. "inputSlots": [
  335. {
  336. "m_id": "{4EAB8D16-C0B4-44E1-885D-8E6754CD1A55}"
  337. }
  338. ],
  339. "prettyClassName": "NetBindComponent"
  340. }
  341. }
  342. },
  343. {
  344. "Id": {
  345. "id": 697191381288
  346. },
  347. "Name": "SC-Node(AutonomousToAuthorityNoParamsByEntityId)",
  348. "Components": {
  349. "Component_[11273150332529097175]": {
  350. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  351. "Id": 11273150332529097175,
  352. "Slots": [
  353. {
  354. "id": {
  355. "m_id": "{C9A30B41-D11F-468D-9535-45CCB4BF5449}"
  356. },
  357. "contracts": [
  358. {
  359. "$type": "SlotTypeContract"
  360. }
  361. ],
  362. "slotName": "Source",
  363. "toolTip": "The Source containing the NetworkTestPlayerComponentController",
  364. "Descriptor": {
  365. "ConnectionType": 1,
  366. "SlotType": 2
  367. },
  368. "DataType": 1
  369. },
  370. {
  371. "id": {
  372. "m_id": "{2A9AD83E-E138-4E76-B61C-B88527A48B6E}"
  373. },
  374. "contracts": [
  375. {
  376. "$type": "SlotTypeContract"
  377. }
  378. ],
  379. "slotName": "In",
  380. "Descriptor": {
  381. "ConnectionType": 1,
  382. "SlotType": 1
  383. }
  384. },
  385. {
  386. "id": {
  387. "m_id": "{13F7453F-1C25-4400-98ED-C990D4E6F95E}"
  388. },
  389. "contracts": [
  390. {
  391. "$type": "SlotTypeContract"
  392. }
  393. ],
  394. "slotName": "Out",
  395. "Descriptor": {
  396. "ConnectionType": 2,
  397. "SlotType": 1
  398. }
  399. }
  400. ],
  401. "Datums": [
  402. {
  403. "isOverloadedStorage": false,
  404. "scriptCanvasType": {
  405. "m_type": 1
  406. },
  407. "isNullPointer": false,
  408. "$type": "EntityId",
  409. "value": {
  410. "id": 2901262558
  411. },
  412. "label": "Source"
  413. }
  414. ],
  415. "methodType": 2,
  416. "methodName": "AutonomousToAuthorityNoParamsByEntityId",
  417. "className": "NetworkTestPlayerComponent",
  418. "resultSlotIDs": [
  419. {}
  420. ],
  421. "inputSlots": [
  422. {
  423. "m_id": "{C9A30B41-D11F-468D-9535-45CCB4BF5449}"
  424. }
  425. ],
  426. "prettyClassName": "NetworkTestPlayerComponent"
  427. }
  428. }
  429. },
  430. {
  431. "Id": {
  432. "id": 680011512104
  433. },
  434. "Name": "SC-Node(Print)",
  435. "Components": {
  436. "Component_[12859814297858949012]": {
  437. "$type": "Print",
  438. "Id": 12859814297858949012,
  439. "Slots": [
  440. {
  441. "id": {
  442. "m_id": "{F975C3B8-C19D-4564-A396-328596875392}"
  443. },
  444. "contracts": [
  445. {
  446. "$type": "SlotTypeContract"
  447. }
  448. ],
  449. "slotName": "In",
  450. "toolTip": "Input signal",
  451. "Descriptor": {
  452. "ConnectionType": 1,
  453. "SlotType": 1
  454. }
  455. },
  456. {
  457. "id": {
  458. "m_id": "{60799DC4-6A6B-497E-9B71-A91AD1213725}"
  459. },
  460. "DynamicTypeOverride": 3,
  461. "contracts": [
  462. {
  463. "$type": "SlotTypeContract"
  464. }
  465. ],
  466. "slotName": "Value",
  467. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  468. "DisplayDataType": {
  469. "m_type": 3
  470. },
  471. "DisplayGroup": {
  472. "Value": 1015031923
  473. },
  474. "Descriptor": {
  475. "ConnectionType": 1,
  476. "SlotType": 2
  477. },
  478. "DataType": 1
  479. },
  480. {
  481. "id": {
  482. "m_id": "{31BD7E67-34B5-4D15-823E-ED170D75BDE8}"
  483. },
  484. "contracts": [
  485. {
  486. "$type": "SlotTypeContract"
  487. }
  488. ],
  489. "slotName": "Out",
  490. "Descriptor": {
  491. "ConnectionType": 2,
  492. "SlotType": 1
  493. }
  494. }
  495. ],
  496. "Datums": [
  497. {
  498. "isOverloadedStorage": false,
  499. "scriptCanvasType": {
  500. "m_type": 3
  501. },
  502. "isNullPointer": false,
  503. "$type": "double",
  504. "value": 0.0,
  505. "label": "Value"
  506. }
  507. ],
  508. "m_format": "AutoComponent_RPC: Received ServerToAuthority RPC. Damage={Value}.\n",
  509. "m_numericPrecision": 0,
  510. "m_arrayBindingMap": [
  511. {
  512. "Key": 1,
  513. "Value": {
  514. "m_id": "{60799DC4-6A6B-497E-9B71-A91AD1213725}"
  515. }
  516. }
  517. ],
  518. "m_unresolvedString": [
  519. "AutoComponent_RPC: Received ServerToAuthority RPC. Damage=",
  520. {},
  521. ".\n"
  522. ],
  523. "m_formatSlotMap": {
  524. "Value": {
  525. "m_id": "{60799DC4-6A6B-497E-9B71-A91AD1213725}"
  526. }
  527. }
  528. }
  529. }
  530. },
  531. {
  532. "Id": {
  533. "id": 662831642920
  534. },
  535. "Name": "SC-Node(Print)",
  536. "Components": {
  537. "Component_[15185116749844245504]": {
  538. "$type": "Print",
  539. "Id": 15185116749844245504,
  540. "Slots": [
  541. {
  542. "id": {
  543. "m_id": "{F3ED8C08-D751-492A-A39A-7B7734727A5A}"
  544. },
  545. "contracts": [
  546. {
  547. "$type": "SlotTypeContract"
  548. }
  549. ],
  550. "slotName": "In",
  551. "toolTip": "Input signal",
  552. "Descriptor": {
  553. "ConnectionType": 1,
  554. "SlotType": 1
  555. }
  556. },
  557. {
  558. "id": {
  559. "m_id": "{D4FA5CCA-34FB-412B-826E-BC7050E684A6}"
  560. },
  561. "DynamicTypeOverride": 3,
  562. "contracts": [
  563. {
  564. "$type": "SlotTypeContract"
  565. }
  566. ],
  567. "slotName": "Value",
  568. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  569. "DisplayDataType": {
  570. "m_type": 3
  571. },
  572. "DisplayGroup": {
  573. "Value": 1015031923
  574. },
  575. "Descriptor": {
  576. "ConnectionType": 1,
  577. "SlotType": 2
  578. },
  579. "DataType": 1,
  580. "IsReference": true,
  581. "VariableReference": {
  582. "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
  583. }
  584. },
  585. {
  586. "id": {
  587. "m_id": "{5A4FB037-120E-4BF8-A170-D827E5DC161B}"
  588. },
  589. "contracts": [
  590. {
  591. "$type": "SlotTypeContract"
  592. }
  593. ],
  594. "slotName": "Out",
  595. "Descriptor": {
  596. "ConnectionType": 2,
  597. "SlotType": 1
  598. }
  599. }
  600. ],
  601. "Datums": [
  602. {
  603. "isOverloadedStorage": false,
  604. "scriptCanvasType": {
  605. "m_type": 3
  606. },
  607. "isNullPointer": false,
  608. "$type": "double",
  609. "value": 0.0,
  610. "label": "Value"
  611. }
  612. ],
  613. "m_format": "AutoComponent_RPC: Sending client PlayerNumber {Value}\n",
  614. "m_numericPrecision": 0,
  615. "m_arrayBindingMap": [
  616. {
  617. "Key": 1,
  618. "Value": {
  619. "m_id": "{D4FA5CCA-34FB-412B-826E-BC7050E684A6}"
  620. }
  621. }
  622. ],
  623. "m_unresolvedString": [
  624. "AutoComponent_RPC: Sending client PlayerNumber ",
  625. {},
  626. "\n"
  627. ],
  628. "m_formatSlotMap": {
  629. "Value": {
  630. "m_id": "{D4FA5CCA-34FB-412B-826E-BC7050E684A6}"
  631. }
  632. }
  633. }
  634. }
  635. },
  636. {
  637. "Id": {
  638. "id": 645651773736
  639. },
  640. "Name": "SC-Node(GetServerToAuthority_DealDamageEventByEntityId)",
  641. "Components": {
  642. "Component_[16625321184717520147]": {
  643. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  644. "Id": 16625321184717520147,
  645. "Slots": [
  646. {
  647. "id": {
  648. "m_id": "{04CE5166-8B62-4F49-8E56-A216BEDB0EE6}"
  649. },
  650. "contracts": [
  651. {
  652. "$type": "SlotTypeContract"
  653. }
  654. ],
  655. "slotName": "EntityId: 0",
  656. "Descriptor": {
  657. "ConnectionType": 1,
  658. "SlotType": 2
  659. },
  660. "DataType": 1
  661. },
  662. {
  663. "id": {
  664. "m_id": "{F5620DBD-DEC6-4798-87E5-08F8D8B2AA5E}"
  665. },
  666. "contracts": [
  667. {
  668. "$type": "SlotTypeContract"
  669. }
  670. ],
  671. "slotName": "In",
  672. "Descriptor": {
  673. "ConnectionType": 1,
  674. "SlotType": 1
  675. }
  676. },
  677. {
  678. "id": {
  679. "m_id": "{ACF019EA-6965-4B75-8E6A-A2DFB2E5A21A}"
  680. },
  681. "contracts": [
  682. {
  683. "$type": "SlotTypeContract"
  684. }
  685. ],
  686. "slotName": "Out",
  687. "Descriptor": {
  688. "ConnectionType": 2,
  689. "SlotType": 1
  690. }
  691. },
  692. {
  693. "id": {
  694. "m_id": "{5E4E3BDB-125E-4FAE-8EA3-C601D948C0BE}"
  695. },
  696. "contracts": [
  697. {
  698. "$type": "SlotTypeContract"
  699. }
  700. ],
  701. "slotName": "Event<float >",
  702. "DisplayDataType": {
  703. "m_type": 4,
  704. "m_azType": "{F0A3166F-115C-5C3E-8D65-28FBA4420028}"
  705. },
  706. "Descriptor": {
  707. "ConnectionType": 2,
  708. "SlotType": 2
  709. },
  710. "DataType": 1
  711. }
  712. ],
  713. "Datums": [
  714. {
  715. "isOverloadedStorage": false,
  716. "scriptCanvasType": {
  717. "m_type": 1
  718. },
  719. "isNullPointer": false,
  720. "$type": "EntityId",
  721. "value": {
  722. "id": 2901262558
  723. },
  724. "label": "EntityId: 0"
  725. }
  726. ],
  727. "methodType": 2,
  728. "methodName": "GetServerToAuthority_DealDamageEventByEntityId",
  729. "className": "NetworkTestPlayerComponent",
  730. "resultSlotIDs": [
  731. {}
  732. ],
  733. "inputSlots": [
  734. {
  735. "m_id": "{04CE5166-8B62-4F49-8E56-A216BEDB0EE6}"
  736. }
  737. ],
  738. "prettyClassName": "NetworkTestPlayerComponent"
  739. }
  740. }
  741. },
  742. {
  743. "Id": {
  744. "id": 628471904552
  745. },
  746. "Name": "SC-Node(GetAutonomousToAuthorityEventByEntityId)",
  747. "Components": {
  748. "Component_[17655705357171497564]": {
  749. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  750. "Id": 17655705357171497564,
  751. "Slots": [
  752. {
  753. "id": {
  754. "m_id": "{F5FDD420-2FDC-4FBC-ADB3-8790C2177E45}"
  755. },
  756. "contracts": [
  757. {
  758. "$type": "SlotTypeContract"
  759. }
  760. ],
  761. "slotName": "EntityId: 0",
  762. "Descriptor": {
  763. "ConnectionType": 1,
  764. "SlotType": 2
  765. },
  766. "DataType": 1
  767. },
  768. {
  769. "id": {
  770. "m_id": "{8C03707D-2088-4935-9351-0CBA4490A83F}"
  771. },
  772. "contracts": [
  773. {
  774. "$type": "SlotTypeContract"
  775. }
  776. ],
  777. "slotName": "In",
  778. "Descriptor": {
  779. "ConnectionType": 1,
  780. "SlotType": 1
  781. }
  782. },
  783. {
  784. "id": {
  785. "m_id": "{D7D61761-DB4A-46CE-A2E7-5DC29FCE8AF6}"
  786. },
  787. "contracts": [
  788. {
  789. "$type": "SlotTypeContract"
  790. }
  791. ],
  792. "slotName": "Out",
  793. "Descriptor": {
  794. "ConnectionType": 2,
  795. "SlotType": 1
  796. }
  797. },
  798. {
  799. "id": {
  800. "m_id": "{E95D2B86-DE53-4477-A970-E770D510EDEF}"
  801. },
  802. "contracts": [
  803. {
  804. "$type": "SlotTypeContract"
  805. }
  806. ],
  807. "slotName": "Event<float >",
  808. "DisplayDataType": {
  809. "m_type": 4,
  810. "m_azType": "{F0A3166F-115C-5C3E-8D65-28FBA4420028}"
  811. },
  812. "Descriptor": {
  813. "ConnectionType": 2,
  814. "SlotType": 2
  815. },
  816. "DataType": 1
  817. }
  818. ],
  819. "Datums": [
  820. {
  821. "isOverloadedStorage": false,
  822. "scriptCanvasType": {
  823. "m_type": 1
  824. },
  825. "isNullPointer": false,
  826. "$type": "EntityId",
  827. "value": {
  828. "id": 2901262558
  829. },
  830. "label": "EntityId: 0"
  831. }
  832. ],
  833. "methodType": 2,
  834. "methodName": "GetAutonomousToAuthorityEventByEntityId",
  835. "className": "NetworkTestPlayerComponent",
  836. "resultSlotIDs": [
  837. {}
  838. ],
  839. "inputSlots": [
  840. {
  841. "m_id": "{F5FDD420-2FDC-4FBC-ADB3-8790C2177E45}"
  842. }
  843. ],
  844. "prettyClassName": "NetworkTestPlayerComponent"
  845. }
  846. }
  847. },
  848. {
  849. "Id": {
  850. "id": 735846086952
  851. },
  852. "Name": "SC-Node(EqualTo)",
  853. "Components": {
  854. "Component_[17871374502220054381]": {
  855. "$type": "EqualTo",
  856. "Id": 17871374502220054381,
  857. "Slots": [
  858. {
  859. "id": {
  860. "m_id": "{086507D9-86CF-4928-B6F3-AECCCEE85C27}"
  861. },
  862. "contracts": [
  863. {
  864. "$type": "SlotTypeContract"
  865. }
  866. ],
  867. "slotName": "Result",
  868. "DisplayDataType": {
  869. "m_type": 0
  870. },
  871. "Descriptor": {
  872. "ConnectionType": 2,
  873. "SlotType": 2
  874. },
  875. "DataType": 1
  876. },
  877. {
  878. "id": {
  879. "m_id": "{50908324-B523-4A34-8990-3DC3B0AEBA31}"
  880. },
  881. "contracts": [
  882. {
  883. "$type": "SlotTypeContract"
  884. }
  885. ],
  886. "slotName": "In",
  887. "toolTip": "Signal to perform the evaluation when desired.",
  888. "Descriptor": {
  889. "ConnectionType": 1,
  890. "SlotType": 1
  891. }
  892. },
  893. {
  894. "id": {
  895. "m_id": "{199CC8FA-0F4C-4459-8150-06FE6A85C696}"
  896. },
  897. "contracts": [
  898. {
  899. "$type": "SlotTypeContract"
  900. }
  901. ],
  902. "slotName": "True",
  903. "toolTip": "Signaled if the result of the operation is true.",
  904. "Descriptor": {
  905. "ConnectionType": 2,
  906. "SlotType": 1
  907. }
  908. },
  909. {
  910. "id": {
  911. "m_id": "{6DD51454-F1A0-43F8-9F32-CB54C06F509F}"
  912. },
  913. "contracts": [
  914. {
  915. "$type": "SlotTypeContract"
  916. }
  917. ],
  918. "slotName": "False",
  919. "toolTip": "Signaled if the result of the operation is false.",
  920. "Descriptor": {
  921. "ConnectionType": 2,
  922. "SlotType": 1
  923. }
  924. },
  925. {
  926. "id": {
  927. "m_id": "{0D75A3A6-9EF5-45D4-93D1-B668D84C89BB}"
  928. },
  929. "DynamicTypeOverride": 3,
  930. "contracts": [
  931. {
  932. "$type": "SlotTypeContract"
  933. }
  934. ],
  935. "slotName": "Value A",
  936. "DisplayDataType": {
  937. "m_type": 3
  938. },
  939. "Descriptor": {
  940. "ConnectionType": 1,
  941. "SlotType": 2
  942. },
  943. "DynamicGroup": {
  944. "Value": 3545012108
  945. },
  946. "DataType": 1
  947. },
  948. {
  949. "id": {
  950. "m_id": "{1250407B-97D0-4BF7-BF4C-93403DC2CB23}"
  951. },
  952. "DynamicTypeOverride": 3,
  953. "contracts": [
  954. {
  955. "$type": "SlotTypeContract"
  956. }
  957. ],
  958. "slotName": "Value B",
  959. "DisplayDataType": {
  960. "m_type": 3
  961. },
  962. "Descriptor": {
  963. "ConnectionType": 1,
  964. "SlotType": 2
  965. },
  966. "DynamicGroup": {
  967. "Value": 3545012108
  968. },
  969. "DataType": 1,
  970. "IsReference": true,
  971. "VariableReference": {
  972. "m_id": "{C7A14632-3AC3-4C19-A646-2AC262A7A6D5}"
  973. }
  974. }
  975. ],
  976. "Datums": [
  977. {
  978. "isOverloadedStorage": false,
  979. "scriptCanvasType": {
  980. "m_type": 3
  981. },
  982. "isNullPointer": false,
  983. "$type": "double",
  984. "value": 0.0,
  985. "label": "Value A"
  986. },
  987. {
  988. "isOverloadedStorage": false,
  989. "scriptCanvasType": {
  990. "m_type": 3
  991. },
  992. "isNullPointer": false,
  993. "$type": "double",
  994. "value": 0.0,
  995. "label": "Value B"
  996. }
  997. ]
  998. }
  999. }
  1000. },
  1001. {
  1002. "Id": {
  1003. "id": 718666217768
  1004. },
  1005. "Name": "SC-EventNode(AutonomousToAuthority Notify Event)",
  1006. "Components": {
  1007. "Component_[18059369242145472630]": {
  1008. "$type": "AzEventHandler",
  1009. "Id": 18059369242145472630,
  1010. "Slots": [
  1011. {
  1012. "id": {
  1013. "m_id": "{696BD8C5-B0D6-4D60-AAF6-38573766F0E1}"
  1014. },
  1015. "contracts": [
  1016. {
  1017. "$type": "SlotTypeContract"
  1018. },
  1019. {
  1020. "$type": "ConnectionLimitContract",
  1021. "limit": 1
  1022. },
  1023. {
  1024. "$type": "RestrictedNodeContract",
  1025. "m_nodeId": {
  1026. "id": 628471904552
  1027. }
  1028. }
  1029. ],
  1030. "slotName": "Connect",
  1031. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  1032. "Descriptor": {
  1033. "ConnectionType": 1,
  1034. "SlotType": 1
  1035. }
  1036. },
  1037. {
  1038. "id": {
  1039. "m_id": "{3A307619-204D-436E-92C5-8E4D97B6EE52}"
  1040. },
  1041. "contracts": [
  1042. {
  1043. "$type": "SlotTypeContract"
  1044. }
  1045. ],
  1046. "slotName": "Disconnect",
  1047. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  1048. "Descriptor": {
  1049. "ConnectionType": 1,
  1050. "SlotType": 1
  1051. }
  1052. },
  1053. {
  1054. "id": {
  1055. "m_id": "{CAB48724-FFCE-427E-AF62-9FE25F60FFE4}"
  1056. },
  1057. "contracts": [
  1058. {
  1059. "$type": "SlotTypeContract"
  1060. }
  1061. ],
  1062. "slotName": "On Connected",
  1063. "toolTip": "Signaled when a connection has taken place.",
  1064. "Descriptor": {
  1065. "ConnectionType": 2,
  1066. "SlotType": 1
  1067. }
  1068. },
  1069. {
  1070. "id": {
  1071. "m_id": "{BBC38F5A-3C91-4E1C-A1DE-34E583E1C8CB}"
  1072. },
  1073. "contracts": [
  1074. {
  1075. "$type": "SlotTypeContract"
  1076. }
  1077. ],
  1078. "slotName": "On Disconnected",
  1079. "toolTip": "Signaled when this event handler is disconnected.",
  1080. "Descriptor": {
  1081. "ConnectionType": 2,
  1082. "SlotType": 1
  1083. }
  1084. },
  1085. {
  1086. "id": {
  1087. "m_id": "{15C848D8-A882-4FFC-96CF-2605516506D3}"
  1088. },
  1089. "contracts": [
  1090. {
  1091. "$type": "SlotTypeContract"
  1092. }
  1093. ],
  1094. "slotName": "OnEvent",
  1095. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  1096. "Descriptor": {
  1097. "ConnectionType": 2,
  1098. "SlotType": 1
  1099. },
  1100. "IsLatent": true
  1101. },
  1102. {
  1103. "id": {
  1104. "m_id": "{0B2A77AD-60A1-4C6E-8403-D51EA03AEE6A}"
  1105. },
  1106. "contracts": [
  1107. {
  1108. "$type": "SlotTypeContract"
  1109. }
  1110. ],
  1111. "slotName": "someFloat",
  1112. "DisplayDataType": {
  1113. "m_type": 3
  1114. },
  1115. "Descriptor": {
  1116. "ConnectionType": 2,
  1117. "SlotType": 2
  1118. },
  1119. "DataType": 1
  1120. },
  1121. {
  1122. "id": {
  1123. "m_id": "{6CFC933D-287B-4989-A624-E9F698715CE0}"
  1124. },
  1125. "contracts": [
  1126. {
  1127. "$type": "SlotTypeContract"
  1128. },
  1129. {
  1130. "$type": "ConnectionLimitContract",
  1131. "limit": 1
  1132. },
  1133. {
  1134. "$type": "RestrictedNodeContract",
  1135. "m_nodeId": {
  1136. "id": 628471904552
  1137. }
  1138. }
  1139. ],
  1140. "slotName": "AutonomousToAuthority Notify Event",
  1141. "Descriptor": {
  1142. "ConnectionType": 1,
  1143. "SlotType": 2
  1144. },
  1145. "DataType": 1
  1146. }
  1147. ],
  1148. "Datums": [
  1149. {
  1150. "scriptCanvasType": {
  1151. "m_type": 4,
  1152. "m_azType": "{F0A3166F-115C-5C3E-8D65-28FBA4420028}"
  1153. },
  1154. "isNullPointer": true,
  1155. "label": "AutonomousToAuthority Notify Event"
  1156. }
  1157. ],
  1158. "m_azEventEntry": {
  1159. "AzEventEntryData_v0": {
  1160. "eventName": "AutonomousToAuthority Notify Event",
  1161. "parameterSlotIds": [
  1162. {
  1163. "m_id": "{0B2A77AD-60A1-4C6E-8403-D51EA03AEE6A}"
  1164. }
  1165. ],
  1166. "azEventInputSlotId": {
  1167. "m_id": "{6CFC933D-287B-4989-A624-E9F698715CE0}"
  1168. }
  1169. }
  1170. }
  1171. }
  1172. }
  1173. },
  1174. {
  1175. "Id": {
  1176. "id": 701486348584
  1177. },
  1178. "Name": "SC-Node(GetAuthorityToAutonomous_PlayerNumberEventByEntityId)",
  1179. "Components": {
  1180. "Component_[1841271567102345236]": {
  1181. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1182. "Id": 1841271567102345236,
  1183. "Slots": [
  1184. {
  1185. "id": {
  1186. "m_id": "{B556F66D-84DB-4118-8AFE-B3D88D6D75CA}"
  1187. },
  1188. "contracts": [
  1189. {
  1190. "$type": "SlotTypeContract"
  1191. }
  1192. ],
  1193. "slotName": "EntityId: 0",
  1194. "Descriptor": {
  1195. "ConnectionType": 1,
  1196. "SlotType": 2
  1197. },
  1198. "DataType": 1
  1199. },
  1200. {
  1201. "id": {
  1202. "m_id": "{211BD78B-E01E-44F8-B44E-2FD988047BE9}"
  1203. },
  1204. "contracts": [
  1205. {
  1206. "$type": "SlotTypeContract"
  1207. }
  1208. ],
  1209. "slotName": "In",
  1210. "Descriptor": {
  1211. "ConnectionType": 1,
  1212. "SlotType": 1
  1213. }
  1214. },
  1215. {
  1216. "id": {
  1217. "m_id": "{1A6BCB27-F99F-4B6B-89CC-F2BE2A698331}"
  1218. },
  1219. "contracts": [
  1220. {
  1221. "$type": "SlotTypeContract"
  1222. }
  1223. ],
  1224. "slotName": "Out",
  1225. "Descriptor": {
  1226. "ConnectionType": 2,
  1227. "SlotType": 1
  1228. }
  1229. },
  1230. {
  1231. "id": {
  1232. "m_id": "{7262E6CD-BADF-4DD0-8FCE-3A02C3F31CC8}"
  1233. },
  1234. "contracts": [
  1235. {
  1236. "$type": "SlotTypeContract"
  1237. }
  1238. ],
  1239. "slotName": "Event<int >",
  1240. "DisplayDataType": {
  1241. "m_type": 4,
  1242. "m_azType": "{DB613438-34F0-5B2E-A413-77424F4254CD}"
  1243. },
  1244. "Descriptor": {
  1245. "ConnectionType": 2,
  1246. "SlotType": 2
  1247. },
  1248. "DataType": 1
  1249. }
  1250. ],
  1251. "Datums": [
  1252. {
  1253. "isOverloadedStorage": false,
  1254. "scriptCanvasType": {
  1255. "m_type": 1
  1256. },
  1257. "isNullPointer": false,
  1258. "$type": "EntityId",
  1259. "value": {
  1260. "id": 2901262558
  1261. },
  1262. "label": "EntityId: 0"
  1263. }
  1264. ],
  1265. "methodType": 2,
  1266. "methodName": "GetAuthorityToAutonomous_PlayerNumberEventByEntityId",
  1267. "className": "NetworkTestPlayerComponent",
  1268. "resultSlotIDs": [
  1269. {}
  1270. ],
  1271. "inputSlots": [
  1272. {
  1273. "m_id": "{B556F66D-84DB-4118-8AFE-B3D88D6D75CA}"
  1274. }
  1275. ],
  1276. "prettyClassName": "NetworkTestPlayerComponent"
  1277. }
  1278. }
  1279. },
  1280. {
  1281. "Id": {
  1282. "id": 684306479400
  1283. },
  1284. "Name": "SC-Node(IsNetEntityRoleAutonomous)",
  1285. "Components": {
  1286. "Component_[2910221472919166361]": {
  1287. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1288. "Id": 2910221472919166361,
  1289. "Slots": [
  1290. {
  1291. "id": {
  1292. "m_id": "{3D15420C-BC06-40A1-A535-9F32CBE583F4}"
  1293. },
  1294. "contracts": [
  1295. {
  1296. "$type": "SlotTypeContract"
  1297. }
  1298. ],
  1299. "slotName": "EntityId: 0",
  1300. "Descriptor": {
  1301. "ConnectionType": 1,
  1302. "SlotType": 2
  1303. },
  1304. "DataType": 1
  1305. },
  1306. {
  1307. "id": {
  1308. "m_id": "{A6A6B41B-BB89-4B7C-A04F-825D764CC15B}"
  1309. },
  1310. "contracts": [
  1311. {
  1312. "$type": "SlotTypeContract"
  1313. }
  1314. ],
  1315. "slotName": "In",
  1316. "Descriptor": {
  1317. "ConnectionType": 1,
  1318. "SlotType": 1
  1319. }
  1320. },
  1321. {
  1322. "id": {
  1323. "m_id": "{090F85BD-4278-4FFD-959F-50FD1FA83E78}"
  1324. },
  1325. "contracts": [
  1326. {
  1327. "$type": "SlotTypeContract"
  1328. }
  1329. ],
  1330. "slotName": "Out",
  1331. "Descriptor": {
  1332. "ConnectionType": 2,
  1333. "SlotType": 1
  1334. }
  1335. },
  1336. {
  1337. "id": {
  1338. "m_id": "{3A509658-59F6-4076-B46C-3A82C6A8DEF8}"
  1339. },
  1340. "contracts": [
  1341. {
  1342. "$type": "SlotTypeContract"
  1343. }
  1344. ],
  1345. "slotName": "Is Role Autonomous",
  1346. "DisplayDataType": {
  1347. "m_type": 0
  1348. },
  1349. "Descriptor": {
  1350. "ConnectionType": 2,
  1351. "SlotType": 2
  1352. },
  1353. "DataType": 1
  1354. }
  1355. ],
  1356. "Datums": [
  1357. {
  1358. "isOverloadedStorage": false,
  1359. "scriptCanvasType": {
  1360. "m_type": 1
  1361. },
  1362. "isNullPointer": false,
  1363. "$type": "EntityId",
  1364. "value": {
  1365. "id": 2901262558
  1366. },
  1367. "label": "EntityId: 0"
  1368. }
  1369. ],
  1370. "methodType": 2,
  1371. "methodName": "IsNetEntityRoleAutonomous",
  1372. "className": "NetBindComponent",
  1373. "resultSlotIDs": [
  1374. {}
  1375. ],
  1376. "inputSlots": [
  1377. {
  1378. "m_id": "{3D15420C-BC06-40A1-A535-9F32CBE583F4}"
  1379. }
  1380. ],
  1381. "prettyClassName": "NetBindComponent"
  1382. }
  1383. }
  1384. },
  1385. {
  1386. "Id": {
  1387. "id": 667126610216
  1388. },
  1389. "Name": "SC-Node(GetAutonomousToAuthorityNoParamsEventByEntityId)",
  1390. "Components": {
  1391. "Component_[5279564240263892080]": {
  1392. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1393. "Id": 5279564240263892080,
  1394. "Slots": [
  1395. {
  1396. "id": {
  1397. "m_id": "{F9A15FDE-FFDC-488B-82D9-E50D7985DE23}"
  1398. },
  1399. "contracts": [
  1400. {
  1401. "$type": "SlotTypeContract"
  1402. }
  1403. ],
  1404. "slotName": "EntityId: 0",
  1405. "Descriptor": {
  1406. "ConnectionType": 1,
  1407. "SlotType": 2
  1408. },
  1409. "DataType": 1
  1410. },
  1411. {
  1412. "id": {
  1413. "m_id": "{1567F6DF-6179-4A07-9013-65F98D972DFC}"
  1414. },
  1415. "contracts": [
  1416. {
  1417. "$type": "SlotTypeContract"
  1418. }
  1419. ],
  1420. "slotName": "In",
  1421. "Descriptor": {
  1422. "ConnectionType": 1,
  1423. "SlotType": 1
  1424. }
  1425. },
  1426. {
  1427. "id": {
  1428. "m_id": "{0D95B08B-3116-4D95-BB25-C0AFEFF1A378}"
  1429. },
  1430. "contracts": [
  1431. {
  1432. "$type": "SlotTypeContract"
  1433. }
  1434. ],
  1435. "slotName": "Out",
  1436. "Descriptor": {
  1437. "ConnectionType": 2,
  1438. "SlotType": 1
  1439. }
  1440. },
  1441. {
  1442. "id": {
  1443. "m_id": "{F8BA927D-C203-4774-B6B8-105896ABCE7B}"
  1444. },
  1445. "contracts": [
  1446. {
  1447. "$type": "SlotTypeContract"
  1448. }
  1449. ],
  1450. "slotName": "Event<>",
  1451. "DisplayDataType": {
  1452. "m_type": 4,
  1453. "m_azType": "{F429F985-AF00-529B-8449-16E56694E5F9}"
  1454. },
  1455. "Descriptor": {
  1456. "ConnectionType": 2,
  1457. "SlotType": 2
  1458. },
  1459. "DataType": 1
  1460. }
  1461. ],
  1462. "Datums": [
  1463. {
  1464. "isOverloadedStorage": false,
  1465. "scriptCanvasType": {
  1466. "m_type": 1
  1467. },
  1468. "isNullPointer": false,
  1469. "$type": "EntityId",
  1470. "value": {
  1471. "id": 2901262558
  1472. },
  1473. "label": "EntityId: 0"
  1474. }
  1475. ],
  1476. "methodType": 2,
  1477. "methodName": "GetAutonomousToAuthorityNoParamsEventByEntityId",
  1478. "className": "NetworkTestPlayerComponent",
  1479. "resultSlotIDs": [
  1480. {}
  1481. ],
  1482. "inputSlots": [
  1483. {
  1484. "m_id": "{F9A15FDE-FFDC-488B-82D9-E50D7985DE23}"
  1485. }
  1486. ],
  1487. "prettyClassName": "NetworkTestPlayerComponent"
  1488. }
  1489. }
  1490. },
  1491. {
  1492. "Id": {
  1493. "id": 649946741032
  1494. },
  1495. "Name": "SC-EventNode(AutonomousToAuthorityNoParams Notify Event)",
  1496. "Components": {
  1497. "Component_[5530578232830264275]": {
  1498. "$type": "AzEventHandler",
  1499. "Id": 5530578232830264275,
  1500. "Slots": [
  1501. {
  1502. "id": {
  1503. "m_id": "{4F83556D-7779-4DB3-8735-4F100E8767B4}"
  1504. },
  1505. "contracts": [
  1506. {
  1507. "$type": "SlotTypeContract"
  1508. },
  1509. {
  1510. "$type": "ConnectionLimitContract",
  1511. "limit": 1
  1512. },
  1513. {
  1514. "$type": "RestrictedNodeContract",
  1515. "m_nodeId": {
  1516. "id": 667126610216
  1517. }
  1518. }
  1519. ],
  1520. "slotName": "Connect",
  1521. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  1522. "Descriptor": {
  1523. "ConnectionType": 1,
  1524. "SlotType": 1
  1525. }
  1526. },
  1527. {
  1528. "id": {
  1529. "m_id": "{93F942A8-5969-45AC-9D2C-88D9F05EE2D1}"
  1530. },
  1531. "contracts": [
  1532. {
  1533. "$type": "SlotTypeContract"
  1534. }
  1535. ],
  1536. "slotName": "Disconnect",
  1537. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  1538. "Descriptor": {
  1539. "ConnectionType": 1,
  1540. "SlotType": 1
  1541. }
  1542. },
  1543. {
  1544. "id": {
  1545. "m_id": "{7E410D3E-C8D4-42EE-BEA7-435A5B64B00B}"
  1546. },
  1547. "contracts": [
  1548. {
  1549. "$type": "SlotTypeContract"
  1550. }
  1551. ],
  1552. "slotName": "On Connected",
  1553. "toolTip": "Signaled when a connection has taken place.",
  1554. "Descriptor": {
  1555. "ConnectionType": 2,
  1556. "SlotType": 1
  1557. }
  1558. },
  1559. {
  1560. "id": {
  1561. "m_id": "{4D76569F-9DE8-475B-8467-F6196DB4D7F6}"
  1562. },
  1563. "contracts": [
  1564. {
  1565. "$type": "SlotTypeContract"
  1566. }
  1567. ],
  1568. "slotName": "On Disconnected",
  1569. "toolTip": "Signaled when this event handler is disconnected.",
  1570. "Descriptor": {
  1571. "ConnectionType": 2,
  1572. "SlotType": 1
  1573. }
  1574. },
  1575. {
  1576. "id": {
  1577. "m_id": "{064CE7CC-F833-43C7-8CD0-4F06C03DD968}"
  1578. },
  1579. "contracts": [
  1580. {
  1581. "$type": "SlotTypeContract"
  1582. }
  1583. ],
  1584. "slotName": "OnEvent",
  1585. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  1586. "Descriptor": {
  1587. "ConnectionType": 2,
  1588. "SlotType": 1
  1589. },
  1590. "IsLatent": true
  1591. },
  1592. {
  1593. "id": {
  1594. "m_id": "{16402F39-DAA5-4AF6-ADE1-3871BC81BB00}"
  1595. },
  1596. "contracts": [
  1597. {
  1598. "$type": "SlotTypeContract"
  1599. },
  1600. {
  1601. "$type": "ConnectionLimitContract",
  1602. "limit": 1
  1603. },
  1604. {
  1605. "$type": "RestrictedNodeContract",
  1606. "m_nodeId": {
  1607. "id": 667126610216
  1608. }
  1609. }
  1610. ],
  1611. "slotName": "AutonomousToAuthorityNoParams Notify Event",
  1612. "Descriptor": {
  1613. "ConnectionType": 1,
  1614. "SlotType": 2
  1615. },
  1616. "DataType": 1
  1617. }
  1618. ],
  1619. "Datums": [
  1620. {
  1621. "scriptCanvasType": {
  1622. "m_type": 4,
  1623. "m_azType": "{F429F985-AF00-529B-8449-16E56694E5F9}"
  1624. },
  1625. "isNullPointer": true,
  1626. "label": "AutonomousToAuthorityNoParams Notify Event"
  1627. }
  1628. ],
  1629. "m_azEventEntry": {
  1630. "AzEventEntryData_v0": {
  1631. "eventName": "AutonomousToAuthorityNoParams Notify Event",
  1632. "azEventInputSlotId": {
  1633. "m_id": "{16402F39-DAA5-4AF6-ADE1-3871BC81BB00}"
  1634. }
  1635. }
  1636. }
  1637. }
  1638. }
  1639. },
  1640. {
  1641. "Id": {
  1642. "id": 632766871848
  1643. },
  1644. "Name": "SendScriptEvent",
  1645. "Components": {
  1646. "Component_[5751772243856660980]": {
  1647. "$type": "SendScriptEvent",
  1648. "Id": 5751772243856660980,
  1649. "Slots": [
  1650. {
  1651. "id": {
  1652. "m_id": "{2FF1A0A1-59C6-4DCF-AE1D-296BD5964D4E}"
  1653. },
  1654. "contracts": [
  1655. {
  1656. "$type": "SlotTypeContract"
  1657. }
  1658. ],
  1659. "slotName": "In",
  1660. "toolTip": "Fires the specified ScriptEvent when signaled",
  1661. "Descriptor": {
  1662. "ConnectionType": 1,
  1663. "SlotType": 1
  1664. }
  1665. },
  1666. {
  1667. "id": {
  1668. "m_id": "{F2955681-A901-432D-99A3-53818F46CDE7}"
  1669. },
  1670. "contracts": [
  1671. {
  1672. "$type": "SlotTypeContract"
  1673. }
  1674. ],
  1675. "slotName": "Out",
  1676. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1677. "Descriptor": {
  1678. "ConnectionType": 2,
  1679. "SlotType": 1
  1680. }
  1681. }
  1682. ],
  1683. "m_version": 1,
  1684. "m_scriptEventAssetId": {
  1685. "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
  1686. },
  1687. "m_asset": {
  1688. "assetId": {
  1689. "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
  1690. },
  1691. "loadBehavior": "PreLoad",
  1692. "assetHint": "levels/multiplayer/autocomponent_rpc/globalgamedata.scriptevents"
  1693. },
  1694. "m_busId": {
  1695. "Value": 1375178404
  1696. },
  1697. "m_eventId": {
  1698. "Value": 2930121176
  1699. }
  1700. }
  1701. }
  1702. },
  1703. {
  1704. "Id": {
  1705. "id": 740141054248
  1706. },
  1707. "Name": "SendScriptEvent",
  1708. "Components": {
  1709. "Component_[6456267108920901297]": {
  1710. "$type": "SendScriptEvent",
  1711. "Id": 6456267108920901297,
  1712. "Slots": [
  1713. {
  1714. "id": {
  1715. "m_id": "{23DBACD8-7784-4E18-A51C-258B25DF4C19}"
  1716. },
  1717. "contracts": [
  1718. {
  1719. "$type": "SlotTypeContract"
  1720. }
  1721. ],
  1722. "slotName": "In",
  1723. "toolTip": "Fires the specified ScriptEvent when signaled",
  1724. "Descriptor": {
  1725. "ConnectionType": 1,
  1726. "SlotType": 1
  1727. }
  1728. },
  1729. {
  1730. "id": {
  1731. "m_id": "{19C850D7-7F1E-4D41-AFD9-5A4FA03D54F0}"
  1732. },
  1733. "contracts": [
  1734. {
  1735. "$type": "SlotTypeContract"
  1736. }
  1737. ],
  1738. "slotName": "Out",
  1739. "toolTip": "Trigged after the ScriptEvent has been signaled and returns",
  1740. "Descriptor": {
  1741. "ConnectionType": 2,
  1742. "SlotType": 1
  1743. }
  1744. },
  1745. {
  1746. "id": {
  1747. "m_id": "{B6CA4982-245A-45F1-8AA6-3295F49DC071}"
  1748. },
  1749. "contracts": [
  1750. {
  1751. "$type": "SlotTypeContract"
  1752. }
  1753. ],
  1754. "slotName": "Number",
  1755. "DisplayDataType": {
  1756. "m_type": 3
  1757. },
  1758. "Descriptor": {
  1759. "ConnectionType": 2,
  1760. "SlotType": 2
  1761. },
  1762. "DataType": 1,
  1763. "IsReference": true,
  1764. "VariableReference": {
  1765. "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
  1766. }
  1767. }
  1768. ],
  1769. "m_version": 1,
  1770. "m_eventSlotMapping": {
  1771. "{C7E99974-D1C0-4108-B731-120AF000060C}": {
  1772. "m_id": "{B6CA4982-245A-45F1-8AA6-3295F49DC071}"
  1773. }
  1774. },
  1775. "m_scriptEventAssetId": {
  1776. "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
  1777. },
  1778. "m_asset": {
  1779. "assetId": {
  1780. "guid": "{FE1B1992-8220-5DD3-A60A-AEC85EB91C54}"
  1781. },
  1782. "loadBehavior": "PreLoad",
  1783. "assetHint": "levels/multiplayer/autocomponent_rpc/globalgamedata.scriptevents"
  1784. },
  1785. "m_busId": {
  1786. "Value": 1375178404
  1787. },
  1788. "m_eventId": {
  1789. "Value": 242067946
  1790. }
  1791. }
  1792. }
  1793. },
  1794. {
  1795. "Id": {
  1796. "id": 722961185064
  1797. },
  1798. "Name": "SC-Node(Print)",
  1799. "Components": {
  1800. "Component_[6838720237293185886]": {
  1801. "$type": "Print",
  1802. "Id": 6838720237293185886,
  1803. "Slots": [
  1804. {
  1805. "id": {
  1806. "m_id": "{D206E5BC-3746-4A18-80C7-DBD335FD05FE}"
  1807. },
  1808. "contracts": [
  1809. {
  1810. "$type": "SlotTypeContract"
  1811. }
  1812. ],
  1813. "slotName": "In",
  1814. "toolTip": "Input signal",
  1815. "Descriptor": {
  1816. "ConnectionType": 1,
  1817. "SlotType": 1
  1818. }
  1819. },
  1820. {
  1821. "id": {
  1822. "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
  1823. },
  1824. "DynamicTypeOverride": 3,
  1825. "contracts": [
  1826. {
  1827. "$type": "SlotTypeContract"
  1828. }
  1829. ],
  1830. "slotName": "Value",
  1831. "toolTip": "Value which replaces instances of {Value} in the resulting string.",
  1832. "DisplayDataType": {
  1833. "m_type": 3
  1834. },
  1835. "DisplayGroup": {
  1836. "Value": 1015031923
  1837. },
  1838. "Descriptor": {
  1839. "ConnectionType": 1,
  1840. "SlotType": 2
  1841. },
  1842. "DataType": 1
  1843. },
  1844. {
  1845. "id": {
  1846. "m_id": "{A4555039-973F-43F6-BC9D-CCC0C9B34252}"
  1847. },
  1848. "contracts": [
  1849. {
  1850. "$type": "SlotTypeContract"
  1851. }
  1852. ],
  1853. "slotName": "Out",
  1854. "Descriptor": {
  1855. "ConnectionType": 2,
  1856. "SlotType": 1
  1857. }
  1858. }
  1859. ],
  1860. "Datums": [
  1861. {
  1862. "isOverloadedStorage": false,
  1863. "scriptCanvasType": {
  1864. "m_type": 3
  1865. },
  1866. "isNullPointer": false,
  1867. "$type": "double",
  1868. "value": 0.0,
  1869. "label": "Value"
  1870. }
  1871. ],
  1872. "m_format": "AutoComponent_RPC: I'm Player #{Value}\n",
  1873. "m_numericPrecision": 0,
  1874. "m_arrayBindingMap": [
  1875. {
  1876. "Key": 1,
  1877. "Value": {
  1878. "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
  1879. }
  1880. }
  1881. ],
  1882. "m_unresolvedString": [
  1883. "AutoComponent_RPC: I'm Player #",
  1884. {},
  1885. "\n"
  1886. ],
  1887. "m_formatSlotMap": {
  1888. "Value": {
  1889. "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
  1890. }
  1891. }
  1892. }
  1893. }
  1894. },
  1895. {
  1896. "Id": {
  1897. "id": 705781315880
  1898. },
  1899. "Name": "SC-Node(Gate)",
  1900. "Components": {
  1901. "Component_[6951386862779859843]": {
  1902. "$type": "Gate",
  1903. "Id": 6951386862779859843,
  1904. "Slots": [
  1905. {
  1906. "id": {
  1907. "m_id": "{26C24382-274B-4227-A311-DBCB27BF1EC2}"
  1908. },
  1909. "contracts": [
  1910. {
  1911. "$type": "SlotTypeContract"
  1912. }
  1913. ],
  1914. "slotName": "Condition",
  1915. "toolTip": "If true the node will signal the Output and proceed execution",
  1916. "Descriptor": {
  1917. "ConnectionType": 1,
  1918. "SlotType": 2
  1919. },
  1920. "DataType": 1
  1921. },
  1922. {
  1923. "id": {
  1924. "m_id": "{501FFDC1-9794-44BB-BCEC-CE3CE6040433}"
  1925. },
  1926. "contracts": [
  1927. {
  1928. "$type": "SlotTypeContract"
  1929. }
  1930. ],
  1931. "slotName": "In",
  1932. "toolTip": "Input signal",
  1933. "Descriptor": {
  1934. "ConnectionType": 1,
  1935. "SlotType": 1
  1936. }
  1937. },
  1938. {
  1939. "id": {
  1940. "m_id": "{987EC87F-A9AA-4E26-B289-FC4C4FCD828A}"
  1941. },
  1942. "contracts": [
  1943. {
  1944. "$type": "SlotTypeContract"
  1945. }
  1946. ],
  1947. "slotName": "True",
  1948. "toolTip": "Signaled if the condition provided evaluates to true.",
  1949. "Descriptor": {
  1950. "ConnectionType": 2,
  1951. "SlotType": 1
  1952. }
  1953. },
  1954. {
  1955. "id": {
  1956. "m_id": "{12BCE368-437E-4A7F-A20A-925CA2D891DD}"
  1957. },
  1958. "contracts": [
  1959. {
  1960. "$type": "SlotTypeContract"
  1961. }
  1962. ],
  1963. "slotName": "False",
  1964. "toolTip": "Signaled if the condition provided evaluates to false.",
  1965. "Descriptor": {
  1966. "ConnectionType": 2,
  1967. "SlotType": 1
  1968. }
  1969. }
  1970. ],
  1971. "Datums": [
  1972. {
  1973. "isOverloadedStorage": false,
  1974. "scriptCanvasType": {
  1975. "m_type": 0
  1976. },
  1977. "isNullPointer": false,
  1978. "$type": "bool",
  1979. "value": false,
  1980. "label": "Condition"
  1981. }
  1982. ]
  1983. }
  1984. }
  1985. },
  1986. {
  1987. "Id": {
  1988. "id": 688601446696
  1989. },
  1990. "Name": "SC-Node(AutonomousToAuthorityByEntityId)",
  1991. "Components": {
  1992. "Component_[7661989376879360319]": {
  1993. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  1994. "Id": 7661989376879360319,
  1995. "Slots": [
  1996. {
  1997. "id": {
  1998. "m_id": "{902176FC-8E54-4667-AAC1-53C49836D2B4}"
  1999. },
  2000. "contracts": [
  2001. {
  2002. "$type": "SlotTypeContract"
  2003. }
  2004. ],
  2005. "slotName": "Source",
  2006. "toolTip": "The Source containing the NetworkTestPlayerComponentController",
  2007. "Descriptor": {
  2008. "ConnectionType": 1,
  2009. "SlotType": 2
  2010. },
  2011. "DataType": 1
  2012. },
  2013. {
  2014. "id": {
  2015. "m_id": "{91F5F4A3-2C97-4656-A469-78CF77A36410}"
  2016. },
  2017. "contracts": [
  2018. {
  2019. "$type": "SlotTypeContract"
  2020. }
  2021. ],
  2022. "slotName": "someFloat",
  2023. "Descriptor": {
  2024. "ConnectionType": 1,
  2025. "SlotType": 2
  2026. },
  2027. "DataType": 1,
  2028. "IsReference": true,
  2029. "VariableReference": {
  2030. "m_id": "{C7A14632-3AC3-4C19-A646-2AC262A7A6D5}"
  2031. }
  2032. },
  2033. {
  2034. "id": {
  2035. "m_id": "{87055807-792E-4A71-B719-5C8E73F069A2}"
  2036. },
  2037. "contracts": [
  2038. {
  2039. "$type": "SlotTypeContract"
  2040. }
  2041. ],
  2042. "slotName": "In",
  2043. "Descriptor": {
  2044. "ConnectionType": 1,
  2045. "SlotType": 1
  2046. }
  2047. },
  2048. {
  2049. "id": {
  2050. "m_id": "{525D5F31-4B2C-4329-96C2-0BBEF558E77E}"
  2051. },
  2052. "contracts": [
  2053. {
  2054. "$type": "SlotTypeContract"
  2055. }
  2056. ],
  2057. "slotName": "Out",
  2058. "Descriptor": {
  2059. "ConnectionType": 2,
  2060. "SlotType": 1
  2061. }
  2062. }
  2063. ],
  2064. "Datums": [
  2065. {
  2066. "isOverloadedStorage": false,
  2067. "scriptCanvasType": {
  2068. "m_type": 1
  2069. },
  2070. "isNullPointer": false,
  2071. "$type": "EntityId",
  2072. "value": {
  2073. "id": 2901262558
  2074. },
  2075. "label": "Source"
  2076. },
  2077. {
  2078. "isOverloadedStorage": false,
  2079. "scriptCanvasType": {
  2080. "m_type": 3
  2081. },
  2082. "isNullPointer": false,
  2083. "$type": "double",
  2084. "value": 42.0,
  2085. "label": "some Float"
  2086. }
  2087. ],
  2088. "methodType": 2,
  2089. "methodName": "AutonomousToAuthorityByEntityId",
  2090. "className": "NetworkTestPlayerComponent",
  2091. "resultSlotIDs": [
  2092. {}
  2093. ],
  2094. "inputSlots": [
  2095. {
  2096. "m_id": "{902176FC-8E54-4667-AAC1-53C49836D2B4}"
  2097. },
  2098. {
  2099. "m_id": "{91F5F4A3-2C97-4656-A469-78CF77A36410}"
  2100. }
  2101. ],
  2102. "prettyClassName": "NetworkTestPlayerComponent"
  2103. }
  2104. }
  2105. },
  2106. {
  2107. "Id": {
  2108. "id": 671421577512
  2109. },
  2110. "Name": "SC-Node(Print)",
  2111. "Components": {
  2112. "Component_[7790429699282497018]": {
  2113. "$type": "Print",
  2114. "Id": 7790429699282497018,
  2115. "Slots": [
  2116. {
  2117. "id": {
  2118. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  2119. },
  2120. "contracts": [
  2121. {
  2122. "$type": "SlotTypeContract"
  2123. }
  2124. ],
  2125. "slotName": "In",
  2126. "toolTip": "Input signal",
  2127. "Descriptor": {
  2128. "ConnectionType": 1,
  2129. "SlotType": 1
  2130. }
  2131. },
  2132. {
  2133. "id": {
  2134. "m_id": "{60147D34-5239-4D7D-9347-9F30DF68D330}"
  2135. },
  2136. "contracts": [
  2137. {
  2138. "$type": "SlotTypeContract"
  2139. }
  2140. ],
  2141. "slotName": "Out",
  2142. "Descriptor": {
  2143. "ConnectionType": 2,
  2144. "SlotType": 1
  2145. }
  2146. }
  2147. ],
  2148. "m_format": "AutoComponent_RPC: Received AutonomousToAuthorityRPC with incorrect value!\n",
  2149. "m_unresolvedString": [
  2150. "AutoComponent_RPC: Received AutonomousToAuthorityRPC with incorrect value!\n"
  2151. ]
  2152. }
  2153. }
  2154. },
  2155. {
  2156. "Id": {
  2157. "id": 654241708328
  2158. },
  2159. "Name": "SC-Node(Print)",
  2160. "Components": {
  2161. "Component_[7790429699282497018]": {
  2162. "$type": "Print",
  2163. "Id": 7790429699282497018,
  2164. "Slots": [
  2165. {
  2166. "id": {
  2167. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  2168. },
  2169. "contracts": [
  2170. {
  2171. "$type": "SlotTypeContract"
  2172. }
  2173. ],
  2174. "slotName": "In",
  2175. "toolTip": "Input signal",
  2176. "Descriptor": {
  2177. "ConnectionType": 1,
  2178. "SlotType": 1
  2179. }
  2180. },
  2181. {
  2182. "id": {
  2183. "m_id": "{60147D34-5239-4D7D-9347-9F30DF68D330}"
  2184. },
  2185. "contracts": [
  2186. {
  2187. "$type": "SlotTypeContract"
  2188. }
  2189. ],
  2190. "slotName": "Out",
  2191. "Descriptor": {
  2192. "ConnectionType": 2,
  2193. "SlotType": 1
  2194. }
  2195. }
  2196. ],
  2197. "m_format": "AutoComponent_RPC: Sending AutonomousToAuthority RPC (with float param).\n",
  2198. "m_unresolvedString": [
  2199. "AutoComponent_RPC: Sending AutonomousToAuthority RPC (with float param).\n"
  2200. ]
  2201. }
  2202. }
  2203. },
  2204. {
  2205. "Id": {
  2206. "id": 637061839144
  2207. },
  2208. "Name": "SC-Node(Print)",
  2209. "Components": {
  2210. "Component_[7790429699282497018]": {
  2211. "$type": "Print",
  2212. "Id": 7790429699282497018,
  2213. "Slots": [
  2214. {
  2215. "id": {
  2216. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  2217. },
  2218. "contracts": [
  2219. {
  2220. "$type": "SlotTypeContract"
  2221. }
  2222. ],
  2223. "slotName": "In",
  2224. "toolTip": "Input signal",
  2225. "Descriptor": {
  2226. "ConnectionType": 1,
  2227. "SlotType": 1
  2228. }
  2229. },
  2230. {
  2231. "id": {
  2232. "m_id": "{60147D34-5239-4D7D-9347-9F30DF68D330}"
  2233. },
  2234. "contracts": [
  2235. {
  2236. "$type": "SlotTypeContract"
  2237. }
  2238. ],
  2239. "slotName": "Out",
  2240. "Descriptor": {
  2241. "ConnectionType": 2,
  2242. "SlotType": 1
  2243. }
  2244. }
  2245. ],
  2246. "m_format": "AutoComponent_RPC: Sending AutonomousToAuthorityNoParam RPC.\n",
  2247. "m_unresolvedString": [
  2248. "AutoComponent_RPC: Sending AutonomousToAuthorityNoParam RPC.\n"
  2249. ]
  2250. }
  2251. }
  2252. },
  2253. {
  2254. "Id": {
  2255. "id": 744436021544
  2256. },
  2257. "Name": "SC-Node(Print)",
  2258. "Components": {
  2259. "Component_[7790429699282497018]": {
  2260. "$type": "Print",
  2261. "Id": 7790429699282497018,
  2262. "Slots": [
  2263. {
  2264. "id": {
  2265. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  2266. },
  2267. "contracts": [
  2268. {
  2269. "$type": "SlotTypeContract"
  2270. }
  2271. ],
  2272. "slotName": "In",
  2273. "toolTip": "Input signal",
  2274. "Descriptor": {
  2275. "ConnectionType": 1,
  2276. "SlotType": 1
  2277. }
  2278. },
  2279. {
  2280. "id": {
  2281. "m_id": "{60147D34-5239-4D7D-9347-9F30DF68D330}"
  2282. },
  2283. "contracts": [
  2284. {
  2285. "$type": "SlotTypeContract"
  2286. }
  2287. ],
  2288. "slotName": "Out",
  2289. "Descriptor": {
  2290. "ConnectionType": 2,
  2291. "SlotType": 1
  2292. }
  2293. }
  2294. ],
  2295. "m_format": "AutoComponent_RPC: Successfully received AutonomousToAuthority RPC (with expected float param).\n",
  2296. "m_unresolvedString": [
  2297. "AutoComponent_RPC: Successfully received AutonomousToAuthority RPC (with expected float param).\n"
  2298. ]
  2299. }
  2300. }
  2301. },
  2302. {
  2303. "Id": {
  2304. "id": 727256152360
  2305. },
  2306. "Name": "SC-Node(Print)",
  2307. "Components": {
  2308. "Component_[7790429699282497018]": {
  2309. "$type": "Print",
  2310. "Id": 7790429699282497018,
  2311. "Slots": [
  2312. {
  2313. "id": {
  2314. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  2315. },
  2316. "contracts": [
  2317. {
  2318. "$type": "SlotTypeContract"
  2319. }
  2320. ],
  2321. "slotName": "In",
  2322. "toolTip": "Input signal",
  2323. "Descriptor": {
  2324. "ConnectionType": 1,
  2325. "SlotType": 1
  2326. }
  2327. },
  2328. {
  2329. "id": {
  2330. "m_id": "{60147D34-5239-4D7D-9347-9F30DF68D330}"
  2331. },
  2332. "contracts": [
  2333. {
  2334. "$type": "SlotTypeContract"
  2335. }
  2336. ],
  2337. "slotName": "Out",
  2338. "Descriptor": {
  2339. "ConnectionType": 2,
  2340. "SlotType": 1
  2341. }
  2342. }
  2343. ],
  2344. "m_format": "AutoComponent_RPC: Successfully received AutonomousToAuthorityNoParams RPC.\n",
  2345. "m_unresolvedString": [
  2346. "AutoComponent_RPC: Successfully received AutonomousToAuthorityNoParams RPC.\n"
  2347. ]
  2348. }
  2349. }
  2350. },
  2351. {
  2352. "Id": {
  2353. "id": 710076283176
  2354. },
  2355. "Name": "SC-Node(TimeDelayNodeableNode)",
  2356. "Components": {
  2357. "Component_[8216689437045635826]": {
  2358. "$type": "TimeDelayNodeableNode",
  2359. "Id": 8216689437045635826,
  2360. "Slots": [
  2361. {
  2362. "id": {
  2363. "m_id": "{D2337DC6-F126-4254-B296-2DE6BA03993F}"
  2364. },
  2365. "contracts": [
  2366. {
  2367. "$type": "SlotTypeContract"
  2368. }
  2369. ],
  2370. "slotName": "Start",
  2371. "DisplayGroup": {
  2372. "Value": 2675529103
  2373. },
  2374. "Descriptor": {
  2375. "ConnectionType": 1,
  2376. "SlotType": 1
  2377. }
  2378. },
  2379. {
  2380. "id": {
  2381. "m_id": "{5809EA65-214B-43A9-8674-B89E9ADF1AE6}"
  2382. },
  2383. "contracts": [
  2384. {
  2385. "$type": "SlotTypeContract"
  2386. }
  2387. ],
  2388. "slotName": "Delay",
  2389. "toolTip": "The amount of time to delay before the Done is signalled.",
  2390. "DisplayGroup": {
  2391. "Value": 2675529103
  2392. },
  2393. "Descriptor": {
  2394. "ConnectionType": 1,
  2395. "SlotType": 2
  2396. },
  2397. "DataType": 1
  2398. },
  2399. {
  2400. "id": {
  2401. "m_id": "{AC3B9B74-5A7A-4AC9-89AA-B255879D6F63}"
  2402. },
  2403. "contracts": [
  2404. {
  2405. "$type": "SlotTypeContract"
  2406. }
  2407. ],
  2408. "slotName": "On Start",
  2409. "DisplayGroup": {
  2410. "Value": 2675529103
  2411. },
  2412. "Descriptor": {
  2413. "ConnectionType": 2,
  2414. "SlotType": 1
  2415. }
  2416. },
  2417. {
  2418. "id": {
  2419. "m_id": "{25568B15-5372-4C2D-8280-2B433251EACA}"
  2420. },
  2421. "contracts": [
  2422. {
  2423. "$type": "SlotTypeContract"
  2424. }
  2425. ],
  2426. "slotName": "Done",
  2427. "toolTip": "Signaled after waiting for the specified amount of times.",
  2428. "DisplayGroup": {
  2429. "Value": 271442091
  2430. },
  2431. "Descriptor": {
  2432. "ConnectionType": 2,
  2433. "SlotType": 1
  2434. },
  2435. "IsLatent": true
  2436. }
  2437. ],
  2438. "Datums": [
  2439. {
  2440. "isOverloadedStorage": false,
  2441. "scriptCanvasType": {
  2442. "m_type": 3
  2443. },
  2444. "isNullPointer": false,
  2445. "$type": "double",
  2446. "value": 1.0,
  2447. "label": "Delay"
  2448. }
  2449. ],
  2450. "nodeable": {
  2451. "m_timeUnits": 2
  2452. },
  2453. "slotExecutionMap": {
  2454. "ins": [
  2455. {
  2456. "_slotId": {
  2457. "m_id": "{D2337DC6-F126-4254-B296-2DE6BA03993F}"
  2458. },
  2459. "_inputs": [
  2460. {
  2461. "_slotId": {
  2462. "m_id": "{5809EA65-214B-43A9-8674-B89E9ADF1AE6}"
  2463. }
  2464. }
  2465. ],
  2466. "_outs": [
  2467. {
  2468. "_slotId": {
  2469. "m_id": "{AC3B9B74-5A7A-4AC9-89AA-B255879D6F63}"
  2470. },
  2471. "_name": "On Start",
  2472. "_interfaceSourceId": "{C071AF8D-5D00-0000-E074-ECBC15020000}"
  2473. }
  2474. ],
  2475. "_interfaceSourceId": "{C3B60A69-2ADF-0000-4062-ABA615020000}"
  2476. }
  2477. ],
  2478. "latents": [
  2479. {
  2480. "_slotId": {
  2481. "m_id": "{25568B15-5372-4C2D-8280-2B433251EACA}"
  2482. },
  2483. "_name": "Done",
  2484. "_interfaceSourceId": "{C3B60A69-2ADF-0000-4062-ABA615020000}"
  2485. }
  2486. ]
  2487. }
  2488. }
  2489. }
  2490. },
  2491. {
  2492. "Id": {
  2493. "id": 692896413992
  2494. },
  2495. "Name": "SC-Node(AuthorityToAutonomous_PlayerNumberByEntityId)",
  2496. "Components": {
  2497. "Component_[8243210565080727934]": {
  2498. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  2499. "Id": 8243210565080727934,
  2500. "Slots": [
  2501. {
  2502. "id": {
  2503. "m_id": "{D8767DB8-4BD8-4907-A3A4-BE0AE4F1A774}"
  2504. },
  2505. "contracts": [
  2506. {
  2507. "$type": "SlotTypeContract"
  2508. }
  2509. ],
  2510. "slotName": "Source",
  2511. "toolTip": "The Source containing the NetworkTestPlayerComponentController",
  2512. "Descriptor": {
  2513. "ConnectionType": 1,
  2514. "SlotType": 2
  2515. },
  2516. "DataType": 1
  2517. },
  2518. {
  2519. "id": {
  2520. "m_id": "{2B948544-DD45-4DE1-A9FC-7AFBE1CAB202}"
  2521. },
  2522. "contracts": [
  2523. {
  2524. "$type": "SlotTypeContract"
  2525. }
  2526. ],
  2527. "slotName": "player_number",
  2528. "Descriptor": {
  2529. "ConnectionType": 1,
  2530. "SlotType": 2
  2531. },
  2532. "DataType": 1,
  2533. "IsReference": true,
  2534. "VariableReference": {
  2535. "m_id": "{71675BCB-6546-4B79-9D5E-912982945852}"
  2536. }
  2537. },
  2538. {
  2539. "id": {
  2540. "m_id": "{1FDB4A9A-D46A-49E8-B734-475230EB7C06}"
  2541. },
  2542. "contracts": [
  2543. {
  2544. "$type": "SlotTypeContract"
  2545. }
  2546. ],
  2547. "slotName": "In",
  2548. "Descriptor": {
  2549. "ConnectionType": 1,
  2550. "SlotType": 1
  2551. }
  2552. },
  2553. {
  2554. "id": {
  2555. "m_id": "{964EAD23-8DF5-47A9-BF07-1E5C7CD0CC6C}"
  2556. },
  2557. "contracts": [
  2558. {
  2559. "$type": "SlotTypeContract"
  2560. }
  2561. ],
  2562. "slotName": "Out",
  2563. "Descriptor": {
  2564. "ConnectionType": 2,
  2565. "SlotType": 1
  2566. }
  2567. }
  2568. ],
  2569. "Datums": [
  2570. {
  2571. "isOverloadedStorage": false,
  2572. "scriptCanvasType": {
  2573. "m_type": 1
  2574. },
  2575. "isNullPointer": false,
  2576. "$type": "EntityId",
  2577. "value": {
  2578. "id": 2901262558
  2579. },
  2580. "label": "Source"
  2581. },
  2582. {
  2583. "isOverloadedStorage": false,
  2584. "scriptCanvasType": {
  2585. "m_type": 3
  2586. },
  2587. "isNullPointer": false,
  2588. "$type": "double",
  2589. "value": 0.0,
  2590. "label": "player_number"
  2591. }
  2592. ],
  2593. "methodType": 2,
  2594. "methodName": "AuthorityToAutonomous_PlayerNumberByEntityId",
  2595. "className": "NetworkTestPlayerComponent",
  2596. "resultSlotIDs": [
  2597. {}
  2598. ],
  2599. "inputSlots": [
  2600. {
  2601. "m_id": "{D8767DB8-4BD8-4907-A3A4-BE0AE4F1A774}"
  2602. },
  2603. {
  2604. "m_id": "{2B948544-DD45-4DE1-A9FC-7AFBE1CAB202}"
  2605. }
  2606. ],
  2607. "prettyClassName": "NetworkTestPlayerComponent"
  2608. }
  2609. }
  2610. },
  2611. {
  2612. "Id": {
  2613. "id": 675716544808
  2614. },
  2615. "Name": "SC-Node(Start)",
  2616. "Components": {
  2617. "Component_[8447409406288787781]": {
  2618. "$type": "Start",
  2619. "Id": 8447409406288787781,
  2620. "Slots": [
  2621. {
  2622. "id": {
  2623. "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
  2624. },
  2625. "contracts": [
  2626. {
  2627. "$type": "SlotTypeContract"
  2628. }
  2629. ],
  2630. "slotName": "Out",
  2631. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  2632. "Descriptor": {
  2633. "ConnectionType": 2,
  2634. "SlotType": 1
  2635. }
  2636. }
  2637. ]
  2638. }
  2639. }
  2640. },
  2641. {
  2642. "Id": {
  2643. "id": 658536675624
  2644. },
  2645. "Name": "SC-Node(Gate)",
  2646. "Components": {
  2647. "Component_[8679383768392231909]": {
  2648. "$type": "Gate",
  2649. "Id": 8679383768392231909,
  2650. "Slots": [
  2651. {
  2652. "id": {
  2653. "m_id": "{3E89B67B-1EF2-4DAB-8028-59A97527F3DF}"
  2654. },
  2655. "contracts": [
  2656. {
  2657. "$type": "SlotTypeContract"
  2658. }
  2659. ],
  2660. "slotName": "Condition",
  2661. "toolTip": "If true the node will signal the Output and proceed execution",
  2662. "Descriptor": {
  2663. "ConnectionType": 1,
  2664. "SlotType": 2
  2665. },
  2666. "DataType": 1
  2667. },
  2668. {
  2669. "id": {
  2670. "m_id": "{8AE7F430-C4A9-444E-B42A-BDDFE96C387A}"
  2671. },
  2672. "contracts": [
  2673. {
  2674. "$type": "SlotTypeContract"
  2675. }
  2676. ],
  2677. "slotName": "In",
  2678. "toolTip": "Input signal",
  2679. "Descriptor": {
  2680. "ConnectionType": 1,
  2681. "SlotType": 1
  2682. }
  2683. },
  2684. {
  2685. "id": {
  2686. "m_id": "{78C92586-C0E1-449F-8EB2-B1CE3BFC8AE7}"
  2687. },
  2688. "contracts": [
  2689. {
  2690. "$type": "SlotTypeContract"
  2691. }
  2692. ],
  2693. "slotName": "True",
  2694. "toolTip": "Signaled if the condition provided evaluates to true.",
  2695. "Descriptor": {
  2696. "ConnectionType": 2,
  2697. "SlotType": 1
  2698. }
  2699. },
  2700. {
  2701. "id": {
  2702. "m_id": "{47D87C86-2D61-46D3-A0FC-138F84FD352B}"
  2703. },
  2704. "contracts": [
  2705. {
  2706. "$type": "SlotTypeContract"
  2707. }
  2708. ],
  2709. "slotName": "False",
  2710. "toolTip": "Signaled if the condition provided evaluates to false.",
  2711. "Descriptor": {
  2712. "ConnectionType": 2,
  2713. "SlotType": 1
  2714. }
  2715. }
  2716. ],
  2717. "Datums": [
  2718. {
  2719. "isOverloadedStorage": false,
  2720. "scriptCanvasType": {
  2721. "m_type": 0
  2722. },
  2723. "isNullPointer": false,
  2724. "$type": "bool",
  2725. "value": false,
  2726. "label": "Condition"
  2727. }
  2728. ]
  2729. }
  2730. }
  2731. },
  2732. {
  2733. "Id": {
  2734. "id": 641356806440
  2735. },
  2736. "Name": "SC-EventNode(ServerToAuthority_DealDamage Notify Event)",
  2737. "Components": {
  2738. "Component_[9158265713886187900]": {
  2739. "$type": "AzEventHandler",
  2740. "Id": 9158265713886187900,
  2741. "Slots": [
  2742. {
  2743. "id": {
  2744. "m_id": "{1B671324-5E8A-4DC2-9249-2E1D1BFAE54C}"
  2745. },
  2746. "contracts": [
  2747. {
  2748. "$type": "SlotTypeContract"
  2749. },
  2750. {
  2751. "$type": "ConnectionLimitContract",
  2752. "limit": 1
  2753. },
  2754. {
  2755. "$type": "RestrictedNodeContract",
  2756. "m_nodeId": {
  2757. "id": 645651773736
  2758. }
  2759. }
  2760. ],
  2761. "slotName": "Connect",
  2762. "toolTip": "Connect the AZ Event to this AZ Event Handler.",
  2763. "Descriptor": {
  2764. "ConnectionType": 1,
  2765. "SlotType": 1
  2766. }
  2767. },
  2768. {
  2769. "id": {
  2770. "m_id": "{072866C8-501C-4A5A-8DDA-5674357C94D5}"
  2771. },
  2772. "contracts": [
  2773. {
  2774. "$type": "SlotTypeContract"
  2775. }
  2776. ],
  2777. "slotName": "Disconnect",
  2778. "toolTip": "Disconnect current AZ Event from this AZ Event Handler.",
  2779. "Descriptor": {
  2780. "ConnectionType": 1,
  2781. "SlotType": 1
  2782. }
  2783. },
  2784. {
  2785. "id": {
  2786. "m_id": "{D1B6069A-2DA3-45D9-9C17-9AAB87C0D7F4}"
  2787. },
  2788. "contracts": [
  2789. {
  2790. "$type": "SlotTypeContract"
  2791. }
  2792. ],
  2793. "slotName": "On Connected",
  2794. "toolTip": "Signaled when a connection has taken place.",
  2795. "Descriptor": {
  2796. "ConnectionType": 2,
  2797. "SlotType": 1
  2798. }
  2799. },
  2800. {
  2801. "id": {
  2802. "m_id": "{11860C0A-CFE0-4579-80CF-FD31DAB4E499}"
  2803. },
  2804. "contracts": [
  2805. {
  2806. "$type": "SlotTypeContract"
  2807. }
  2808. ],
  2809. "slotName": "On Disconnected",
  2810. "toolTip": "Signaled when this event handler is disconnected.",
  2811. "Descriptor": {
  2812. "ConnectionType": 2,
  2813. "SlotType": 1
  2814. }
  2815. },
  2816. {
  2817. "id": {
  2818. "m_id": "{9D1F8BDB-A8E5-4E69-BCB8-4F6C03C6C925}"
  2819. },
  2820. "contracts": [
  2821. {
  2822. "$type": "SlotTypeContract"
  2823. }
  2824. ],
  2825. "slotName": "OnEvent",
  2826. "toolTip": "Triggered when the AZ Event invokes Signal() function.",
  2827. "Descriptor": {
  2828. "ConnectionType": 2,
  2829. "SlotType": 1
  2830. },
  2831. "IsLatent": true
  2832. },
  2833. {
  2834. "id": {
  2835. "m_id": "{F561949F-A404-4853-A50F-B9D54270418C}"
  2836. },
  2837. "contracts": [
  2838. {
  2839. "$type": "SlotTypeContract"
  2840. }
  2841. ],
  2842. "slotName": "damage",
  2843. "DisplayDataType": {
  2844. "m_type": 3
  2845. },
  2846. "Descriptor": {
  2847. "ConnectionType": 2,
  2848. "SlotType": 2
  2849. },
  2850. "DataType": 1
  2851. },
  2852. {
  2853. "id": {
  2854. "m_id": "{CE461109-2456-42E7-A3FE-07FA2D35E340}"
  2855. },
  2856. "contracts": [
  2857. {
  2858. "$type": "SlotTypeContract"
  2859. },
  2860. {
  2861. "$type": "ConnectionLimitContract",
  2862. "limit": 1
  2863. },
  2864. {
  2865. "$type": "RestrictedNodeContract",
  2866. "m_nodeId": {
  2867. "id": 645651773736
  2868. }
  2869. }
  2870. ],
  2871. "slotName": "ServerToAuthority_DealDamage Notify Event",
  2872. "Descriptor": {
  2873. "ConnectionType": 1,
  2874. "SlotType": 2
  2875. },
  2876. "DataType": 1
  2877. }
  2878. ],
  2879. "Datums": [
  2880. {
  2881. "scriptCanvasType": {
  2882. "m_type": 4,
  2883. "m_azType": "{F0A3166F-115C-5C3E-8D65-28FBA4420028}"
  2884. },
  2885. "isNullPointer": true,
  2886. "label": "ServerToAuthority_DealDamage Notify Event"
  2887. }
  2888. ],
  2889. "m_azEventEntry": {
  2890. "AzEventEntryData_v0": {
  2891. "eventName": "ServerToAuthority_DealDamage Notify Event",
  2892. "parameterSlotIds": [
  2893. {
  2894. "m_id": "{F561949F-A404-4853-A50F-B9D54270418C}"
  2895. }
  2896. ],
  2897. "azEventInputSlotId": {
  2898. "m_id": "{CE461109-2456-42E7-A3FE-07FA2D35E340}"
  2899. }
  2900. }
  2901. }
  2902. }
  2903. }
  2904. }
  2905. ],
  2906. "m_connections": [
  2907. {
  2908. "Id": {
  2909. "id": 748730988840
  2910. },
  2911. "Name": "srcEndpoint=(IsNetEntityRoleAuthority: Is Role Authority), destEndpoint=(If: Condition)",
  2912. "Components": {
  2913. "Component_[17942926291787646743]": {
  2914. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2915. "Id": 17942926291787646743,
  2916. "sourceEndpoint": {
  2917. "nodeId": {
  2918. "id": 714371250472
  2919. },
  2920. "slotId": {
  2921. "m_id": "{BA87B4ED-9A52-4A0D-8920-CD0ED4E839EA}"
  2922. }
  2923. },
  2924. "targetEndpoint": {
  2925. "nodeId": {
  2926. "id": 658536675624
  2927. },
  2928. "slotId": {
  2929. "m_id": "{3E89B67B-1EF2-4DAB-8028-59A97527F3DF}"
  2930. }
  2931. }
  2932. }
  2933. }
  2934. },
  2935. {
  2936. "Id": {
  2937. "id": 753025956136
  2938. },
  2939. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(Send Script Event: In)",
  2940. "Components": {
  2941. "Component_[5482500452520221078]": {
  2942. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2943. "Id": 5482500452520221078,
  2944. "sourceEndpoint": {
  2945. "nodeId": {
  2946. "id": 632766871848
  2947. },
  2948. "slotId": {
  2949. "m_id": "{F2955681-A901-432D-99A3-53818F46CDE7}"
  2950. }
  2951. },
  2952. "targetEndpoint": {
  2953. "nodeId": {
  2954. "id": 740141054248
  2955. },
  2956. "slotId": {
  2957. "m_id": "{23DBACD8-7784-4E18-A51C-258B25DF4C19}"
  2958. }
  2959. }
  2960. }
  2961. }
  2962. },
  2963. {
  2964. "Id": {
  2965. "id": 757320923432
  2966. },
  2967. "Name": "srcEndpoint=(Send Script Event: Out), destEndpoint=(AuthorityToAutonomous_PlayerNumberByEntityId: In)",
  2968. "Components": {
  2969. "Component_[16156808606878296902]": {
  2970. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2971. "Id": 16156808606878296902,
  2972. "sourceEndpoint": {
  2973. "nodeId": {
  2974. "id": 740141054248
  2975. },
  2976. "slotId": {
  2977. "m_id": "{19C850D7-7F1E-4D41-AFD9-5A4FA03D54F0}"
  2978. }
  2979. },
  2980. "targetEndpoint": {
  2981. "nodeId": {
  2982. "id": 692896413992
  2983. },
  2984. "slotId": {
  2985. "m_id": "{1FDB4A9A-D46A-49E8-B734-475230EB7C06}"
  2986. }
  2987. }
  2988. }
  2989. }
  2990. },
  2991. {
  2992. "Id": {
  2993. "id": 761615890728
  2994. },
  2995. "Name": "srcEndpoint=(AuthorityToAutonomous_PlayerNumberByEntityId: Out), destEndpoint=(Print: In)",
  2996. "Components": {
  2997. "Component_[17367899649716276273]": {
  2998. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2999. "Id": 17367899649716276273,
  3000. "sourceEndpoint": {
  3001. "nodeId": {
  3002. "id": 692896413992
  3003. },
  3004. "slotId": {
  3005. "m_id": "{964EAD23-8DF5-47A9-BF07-1E5C7CD0CC6C}"
  3006. }
  3007. },
  3008. "targetEndpoint": {
  3009. "nodeId": {
  3010. "id": 662831642920
  3011. },
  3012. "slotId": {
  3013. "m_id": "{F3ED8C08-D751-492A-A39A-7B7734727A5A}"
  3014. }
  3015. }
  3016. }
  3017. }
  3018. },
  3019. {
  3020. "Id": {
  3021. "id": 765910858024
  3022. },
  3023. "Name": "srcEndpoint=(GetAuthorityToAutonomous_PlayerNumberEventByEntityId: Event<int >), destEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: AuthorityToAutonomous_PlayerNumber Notify Event)",
  3024. "Components": {
  3025. "Component_[9477060643694737434]": {
  3026. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3027. "Id": 9477060643694737434,
  3028. "sourceEndpoint": {
  3029. "nodeId": {
  3030. "id": 701486348584
  3031. },
  3032. "slotId": {
  3033. "m_id": "{7262E6CD-BADF-4DD0-8FCE-3A02C3F31CC8}"
  3034. }
  3035. },
  3036. "targetEndpoint": {
  3037. "nodeId": {
  3038. "id": 731551119656
  3039. },
  3040. "slotId": {
  3041. "m_id": "{8C7E88EA-8FEE-45D0-9A2E-78BC4A18F508}"
  3042. }
  3043. }
  3044. }
  3045. }
  3046. },
  3047. {
  3048. "Id": {
  3049. "id": 770205825320
  3050. },
  3051. "Name": "srcEndpoint=(GetAuthorityToAutonomous_PlayerNumberEventByEntityId: Out), destEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: Connect)",
  3052. "Components": {
  3053. "Component_[16543380658701699472]": {
  3054. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3055. "Id": 16543380658701699472,
  3056. "sourceEndpoint": {
  3057. "nodeId": {
  3058. "id": 701486348584
  3059. },
  3060. "slotId": {
  3061. "m_id": "{1A6BCB27-F99F-4B6B-89CC-F2BE2A698331}"
  3062. }
  3063. },
  3064. "targetEndpoint": {
  3065. "nodeId": {
  3066. "id": 731551119656
  3067. },
  3068. "slotId": {
  3069. "m_id": "{46E6B649-CAA4-4318-960D-5E4854E21BB2}"
  3070. }
  3071. }
  3072. }
  3073. }
  3074. },
  3075. {
  3076. "Id": {
  3077. "id": 774500792616
  3078. },
  3079. "Name": "srcEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: player_number), destEndpoint=(Print: Value)",
  3080. "Components": {
  3081. "Component_[864863482692400383]": {
  3082. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3083. "Id": 864863482692400383,
  3084. "sourceEndpoint": {
  3085. "nodeId": {
  3086. "id": 731551119656
  3087. },
  3088. "slotId": {
  3089. "m_id": "{82D3E2FD-ADFA-47F7-A889-D1172BF2EC49}"
  3090. }
  3091. },
  3092. "targetEndpoint": {
  3093. "nodeId": {
  3094. "id": 722961185064
  3095. },
  3096. "slotId": {
  3097. "m_id": "{BA146872-FBFF-4662-A569-8F1B4C8774AC}"
  3098. }
  3099. }
  3100. }
  3101. }
  3102. },
  3103. {
  3104. "Id": {
  3105. "id": 778795759912
  3106. },
  3107. "Name": "srcEndpoint=(AuthorityToAutonomous_PlayerNumber Notify Event: OnEvent), destEndpoint=(Print: In)",
  3108. "Components": {
  3109. "Component_[2451057837093425972]": {
  3110. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3111. "Id": 2451057837093425972,
  3112. "sourceEndpoint": {
  3113. "nodeId": {
  3114. "id": 731551119656
  3115. },
  3116. "slotId": {
  3117. "m_id": "{586BE222-2DEA-4E08-968F-07CA4EB96C54}"
  3118. }
  3119. },
  3120. "targetEndpoint": {
  3121. "nodeId": {
  3122. "id": 722961185064
  3123. },
  3124. "slotId": {
  3125. "m_id": "{D206E5BC-3746-4A18-80C7-DBD335FD05FE}"
  3126. }
  3127. }
  3128. }
  3129. }
  3130. },
  3131. {
  3132. "Id": {
  3133. "id": 783090727208
  3134. },
  3135. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(GetAuthorityToAutonomous_PlayerNumberEventByEntityId: In)",
  3136. "Components": {
  3137. "Component_[12180981889720748145]": {
  3138. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3139. "Id": 12180981889720748145,
  3140. "sourceEndpoint": {
  3141. "nodeId": {
  3142. "id": 675716544808
  3143. },
  3144. "slotId": {
  3145. "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
  3146. }
  3147. },
  3148. "targetEndpoint": {
  3149. "nodeId": {
  3150. "id": 701486348584
  3151. },
  3152. "slotId": {
  3153. "m_id": "{211BD78B-E01E-44F8-B44E-2FD988047BE9}"
  3154. }
  3155. }
  3156. }
  3157. }
  3158. },
  3159. {
  3160. "Id": {
  3161. "id": 787385694504
  3162. },
  3163. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(IsNetEntityRoleAutonomous: In)",
  3164. "Components": {
  3165. "Component_[365174191398485301]": {
  3166. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3167. "Id": 365174191398485301,
  3168. "sourceEndpoint": {
  3169. "nodeId": {
  3170. "id": 675716544808
  3171. },
  3172. "slotId": {
  3173. "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
  3174. }
  3175. },
  3176. "targetEndpoint": {
  3177. "nodeId": {
  3178. "id": 684306479400
  3179. },
  3180. "slotId": {
  3181. "m_id": "{A6A6B41B-BB89-4B7C-A04F-825D764CC15B}"
  3182. }
  3183. }
  3184. }
  3185. }
  3186. },
  3187. {
  3188. "Id": {
  3189. "id": 791680661800
  3190. },
  3191. "Name": "srcEndpoint=(IsNetEntityRoleAutonomous: Out), destEndpoint=(If: In)",
  3192. "Components": {
  3193. "Component_[1321525348751149183]": {
  3194. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3195. "Id": 1321525348751149183,
  3196. "sourceEndpoint": {
  3197. "nodeId": {
  3198. "id": 684306479400
  3199. },
  3200. "slotId": {
  3201. "m_id": "{090F85BD-4278-4FFD-959F-50FD1FA83E78}"
  3202. }
  3203. },
  3204. "targetEndpoint": {
  3205. "nodeId": {
  3206. "id": 705781315880
  3207. },
  3208. "slotId": {
  3209. "m_id": "{501FFDC1-9794-44BB-BCEC-CE3CE6040433}"
  3210. }
  3211. }
  3212. }
  3213. }
  3214. },
  3215. {
  3216. "Id": {
  3217. "id": 795975629096
  3218. },
  3219. "Name": "srcEndpoint=(IsNetEntityRoleAutonomous: Is Role Autonomous), destEndpoint=(If: Condition)",
  3220. "Components": {
  3221. "Component_[9644995032049430141]": {
  3222. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3223. "Id": 9644995032049430141,
  3224. "sourceEndpoint": {
  3225. "nodeId": {
  3226. "id": 684306479400
  3227. },
  3228. "slotId": {
  3229. "m_id": "{3A509658-59F6-4076-B46C-3A82C6A8DEF8}"
  3230. }
  3231. },
  3232. "targetEndpoint": {
  3233. "nodeId": {
  3234. "id": 705781315880
  3235. },
  3236. "slotId": {
  3237. "m_id": "{26C24382-274B-4227-A311-DBCB27BF1EC2}"
  3238. }
  3239. }
  3240. }
  3241. }
  3242. },
  3243. {
  3244. "Id": {
  3245. "id": 800270596392
  3246. },
  3247. "Name": "srcEndpoint=(If: True), destEndpoint=(AutonomousToAuthorityByEntityId: In)",
  3248. "Components": {
  3249. "Component_[9061691096719893556]": {
  3250. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3251. "Id": 9061691096719893556,
  3252. "sourceEndpoint": {
  3253. "nodeId": {
  3254. "id": 705781315880
  3255. },
  3256. "slotId": {
  3257. "m_id": "{987EC87F-A9AA-4E26-B289-FC4C4FCD828A}"
  3258. }
  3259. },
  3260. "targetEndpoint": {
  3261. "nodeId": {
  3262. "id": 688601446696
  3263. },
  3264. "slotId": {
  3265. "m_id": "{87055807-792E-4A71-B719-5C8E73F069A2}"
  3266. }
  3267. }
  3268. }
  3269. }
  3270. },
  3271. {
  3272. "Id": {
  3273. "id": 804565563688
  3274. },
  3275. "Name": "srcEndpoint=(If: True), destEndpoint=(AutonomousToAuthorityNoParamsByEntityId: In)",
  3276. "Components": {
  3277. "Component_[16491639789060304987]": {
  3278. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3279. "Id": 16491639789060304987,
  3280. "sourceEndpoint": {
  3281. "nodeId": {
  3282. "id": 705781315880
  3283. },
  3284. "slotId": {
  3285. "m_id": "{987EC87F-A9AA-4E26-B289-FC4C4FCD828A}"
  3286. }
  3287. },
  3288. "targetEndpoint": {
  3289. "nodeId": {
  3290. "id": 697191381288
  3291. },
  3292. "slotId": {
  3293. "m_id": "{2A9AD83E-E138-4E76-B61C-B88527A48B6E}"
  3294. }
  3295. }
  3296. }
  3297. }
  3298. },
  3299. {
  3300. "Id": {
  3301. "id": 808860530984
  3302. },
  3303. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(IsNetEntityRoleAuthority: In)",
  3304. "Components": {
  3305. "Component_[1892207832365166303]": {
  3306. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3307. "Id": 1892207832365166303,
  3308. "sourceEndpoint": {
  3309. "nodeId": {
  3310. "id": 675716544808
  3311. },
  3312. "slotId": {
  3313. "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
  3314. }
  3315. },
  3316. "targetEndpoint": {
  3317. "nodeId": {
  3318. "id": 714371250472
  3319. },
  3320. "slotId": {
  3321. "m_id": "{B6C4BE5E-CDE4-4EC7-98D0-A019CD80041C}"
  3322. }
  3323. }
  3324. }
  3325. }
  3326. },
  3327. {
  3328. "Id": {
  3329. "id": 813155498280
  3330. },
  3331. "Name": "srcEndpoint=(If: True), destEndpoint=(TimeDelay: Start)",
  3332. "Components": {
  3333. "Component_[707099415110566985]": {
  3334. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3335. "Id": 707099415110566985,
  3336. "sourceEndpoint": {
  3337. "nodeId": {
  3338. "id": 658536675624
  3339. },
  3340. "slotId": {
  3341. "m_id": "{78C92586-C0E1-449F-8EB2-B1CE3BFC8AE7}"
  3342. }
  3343. },
  3344. "targetEndpoint": {
  3345. "nodeId": {
  3346. "id": 710076283176
  3347. },
  3348. "slotId": {
  3349. "m_id": "{D2337DC6-F126-4254-B296-2DE6BA03993F}"
  3350. }
  3351. }
  3352. }
  3353. }
  3354. },
  3355. {
  3356. "Id": {
  3357. "id": 817450465576
  3358. },
  3359. "Name": "srcEndpoint=(TimeDelay: Done), destEndpoint=(Send Script Event: In)",
  3360. "Components": {
  3361. "Component_[10913848020478557877]": {
  3362. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3363. "Id": 10913848020478557877,
  3364. "sourceEndpoint": {
  3365. "nodeId": {
  3366. "id": 710076283176
  3367. },
  3368. "slotId": {
  3369. "m_id": "{25568B15-5372-4C2D-8280-2B433251EACA}"
  3370. }
  3371. },
  3372. "targetEndpoint": {
  3373. "nodeId": {
  3374. "id": 632766871848
  3375. },
  3376. "slotId": {
  3377. "m_id": "{2FF1A0A1-59C6-4DCF-AE1D-296BD5964D4E}"
  3378. }
  3379. }
  3380. }
  3381. }
  3382. },
  3383. {
  3384. "Id": {
  3385. "id": 821745432872
  3386. },
  3387. "Name": "srcEndpoint=(GetAutonomousToAuthorityEventByEntityId: Event<float >), destEndpoint=(AutonomousToAuthority Notify Event: AutonomousToAuthority Notify Event)",
  3388. "Components": {
  3389. "Component_[3229433648916102526]": {
  3390. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3391. "Id": 3229433648916102526,
  3392. "sourceEndpoint": {
  3393. "nodeId": {
  3394. "id": 628471904552
  3395. },
  3396. "slotId": {
  3397. "m_id": "{E95D2B86-DE53-4477-A970-E770D510EDEF}"
  3398. }
  3399. },
  3400. "targetEndpoint": {
  3401. "nodeId": {
  3402. "id": 718666217768
  3403. },
  3404. "slotId": {
  3405. "m_id": "{6CFC933D-287B-4989-A624-E9F698715CE0}"
  3406. }
  3407. }
  3408. }
  3409. }
  3410. },
  3411. {
  3412. "Id": {
  3413. "id": 826040400168
  3414. },
  3415. "Name": "srcEndpoint=(GetAutonomousToAuthorityEventByEntityId: Out), destEndpoint=(AutonomousToAuthority Notify Event: Connect)",
  3416. "Components": {
  3417. "Component_[14217458098401001525]": {
  3418. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3419. "Id": 14217458098401001525,
  3420. "sourceEndpoint": {
  3421. "nodeId": {
  3422. "id": 628471904552
  3423. },
  3424. "slotId": {
  3425. "m_id": "{D7D61761-DB4A-46CE-A2E7-5DC29FCE8AF6}"
  3426. }
  3427. },
  3428. "targetEndpoint": {
  3429. "nodeId": {
  3430. "id": 718666217768
  3431. },
  3432. "slotId": {
  3433. "m_id": "{696BD8C5-B0D6-4D60-AAF6-38573766F0E1}"
  3434. }
  3435. }
  3436. }
  3437. }
  3438. },
  3439. {
  3440. "Id": {
  3441. "id": 830335367464
  3442. },
  3443. "Name": "srcEndpoint=(IsNetEntityRoleAuthority: Out), destEndpoint=(If: In)",
  3444. "Components": {
  3445. "Component_[17604177152063643593]": {
  3446. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3447. "Id": 17604177152063643593,
  3448. "sourceEndpoint": {
  3449. "nodeId": {
  3450. "id": 714371250472
  3451. },
  3452. "slotId": {
  3453. "m_id": "{1071F455-D5A0-4C7A-AF91-648A0F197885}"
  3454. }
  3455. },
  3456. "targetEndpoint": {
  3457. "nodeId": {
  3458. "id": 658536675624
  3459. },
  3460. "slotId": {
  3461. "m_id": "{8AE7F430-C4A9-444E-B42A-BDDFE96C387A}"
  3462. }
  3463. }
  3464. }
  3465. }
  3466. },
  3467. {
  3468. "Id": {
  3469. "id": 834630334760
  3470. },
  3471. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(GetAutonomousToAuthorityEventByEntityId: In)",
  3472. "Components": {
  3473. "Component_[12943453772129471142]": {
  3474. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3475. "Id": 12943453772129471142,
  3476. "sourceEndpoint": {
  3477. "nodeId": {
  3478. "id": 675716544808
  3479. },
  3480. "slotId": {
  3481. "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
  3482. }
  3483. },
  3484. "targetEndpoint": {
  3485. "nodeId": {
  3486. "id": 628471904552
  3487. },
  3488. "slotId": {
  3489. "m_id": "{8C03707D-2088-4935-9351-0CBA4490A83F}"
  3490. }
  3491. }
  3492. }
  3493. }
  3494. },
  3495. {
  3496. "Id": {
  3497. "id": 838925302056
  3498. },
  3499. "Name": "srcEndpoint=(AutonomousToAuthorityByEntityId: Out), destEndpoint=(Print: In)",
  3500. "Components": {
  3501. "Component_[9323586575477426199]": {
  3502. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3503. "Id": 9323586575477426199,
  3504. "sourceEndpoint": {
  3505. "nodeId": {
  3506. "id": 688601446696
  3507. },
  3508. "slotId": {
  3509. "m_id": "{525D5F31-4B2C-4329-96C2-0BBEF558E77E}"
  3510. }
  3511. },
  3512. "targetEndpoint": {
  3513. "nodeId": {
  3514. "id": 637061839144
  3515. },
  3516. "slotId": {
  3517. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  3518. }
  3519. }
  3520. }
  3521. }
  3522. },
  3523. {
  3524. "Id": {
  3525. "id": 843220269352
  3526. },
  3527. "Name": "srcEndpoint=(AutonomousToAuthorityNoParamsByEntityId: Out), destEndpoint=(Print: In)",
  3528. "Components": {
  3529. "Component_[18258432894347226056]": {
  3530. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3531. "Id": 18258432894347226056,
  3532. "sourceEndpoint": {
  3533. "nodeId": {
  3534. "id": 697191381288
  3535. },
  3536. "slotId": {
  3537. "m_id": "{13F7453F-1C25-4400-98ED-C990D4E6F95E}"
  3538. }
  3539. },
  3540. "targetEndpoint": {
  3541. "nodeId": {
  3542. "id": 654241708328
  3543. },
  3544. "slotId": {
  3545. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  3546. }
  3547. }
  3548. }
  3549. }
  3550. },
  3551. {
  3552. "Id": {
  3553. "id": 847515236648
  3554. },
  3555. "Name": "srcEndpoint=(AutonomousToAuthority Notify Event: OnEvent), destEndpoint=(Equal To (==): In)",
  3556. "Components": {
  3557. "Component_[11859442123209389632]": {
  3558. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3559. "Id": 11859442123209389632,
  3560. "sourceEndpoint": {
  3561. "nodeId": {
  3562. "id": 718666217768
  3563. },
  3564. "slotId": {
  3565. "m_id": "{15C848D8-A882-4FFC-96CF-2605516506D3}"
  3566. }
  3567. },
  3568. "targetEndpoint": {
  3569. "nodeId": {
  3570. "id": 735846086952
  3571. },
  3572. "slotId": {
  3573. "m_id": "{50908324-B523-4A34-8990-3DC3B0AEBA31}"
  3574. }
  3575. }
  3576. }
  3577. }
  3578. },
  3579. {
  3580. "Id": {
  3581. "id": 851810203944
  3582. },
  3583. "Name": "srcEndpoint=(AutonomousToAuthority Notify Event: someFloat), destEndpoint=(Equal To (==): Value A)",
  3584. "Components": {
  3585. "Component_[10018282958727479470]": {
  3586. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3587. "Id": 10018282958727479470,
  3588. "sourceEndpoint": {
  3589. "nodeId": {
  3590. "id": 718666217768
  3591. },
  3592. "slotId": {
  3593. "m_id": "{0B2A77AD-60A1-4C6E-8403-D51EA03AEE6A}"
  3594. }
  3595. },
  3596. "targetEndpoint": {
  3597. "nodeId": {
  3598. "id": 735846086952
  3599. },
  3600. "slotId": {
  3601. "m_id": "{0D75A3A6-9EF5-45D4-93D1-B668D84C89BB}"
  3602. }
  3603. }
  3604. }
  3605. }
  3606. },
  3607. {
  3608. "Id": {
  3609. "id": 856105171240
  3610. },
  3611. "Name": "srcEndpoint=(Equal To (==): True), destEndpoint=(Print: In)",
  3612. "Components": {
  3613. "Component_[14198801812242028783]": {
  3614. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3615. "Id": 14198801812242028783,
  3616. "sourceEndpoint": {
  3617. "nodeId": {
  3618. "id": 735846086952
  3619. },
  3620. "slotId": {
  3621. "m_id": "{199CC8FA-0F4C-4459-8150-06FE6A85C696}"
  3622. }
  3623. },
  3624. "targetEndpoint": {
  3625. "nodeId": {
  3626. "id": 744436021544
  3627. },
  3628. "slotId": {
  3629. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  3630. }
  3631. }
  3632. }
  3633. }
  3634. },
  3635. {
  3636. "Id": {
  3637. "id": 860400138536
  3638. },
  3639. "Name": "srcEndpoint=(Equal To (==): False), destEndpoint=(Print: In)",
  3640. "Components": {
  3641. "Component_[9971712311184730280]": {
  3642. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3643. "Id": 9971712311184730280,
  3644. "sourceEndpoint": {
  3645. "nodeId": {
  3646. "id": 735846086952
  3647. },
  3648. "slotId": {
  3649. "m_id": "{6DD51454-F1A0-43F8-9F32-CB54C06F509F}"
  3650. }
  3651. },
  3652. "targetEndpoint": {
  3653. "nodeId": {
  3654. "id": 671421577512
  3655. },
  3656. "slotId": {
  3657. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  3658. }
  3659. }
  3660. }
  3661. }
  3662. },
  3663. {
  3664. "Id": {
  3665. "id": 864695105832
  3666. },
  3667. "Name": "srcEndpoint=(GetAutonomousToAuthorityNoParamsEventByEntityId: Event<>), destEndpoint=(AutonomousToAuthorityNoParams Notify Event: AutonomousToAuthorityNoParams Notify Event)",
  3668. "Components": {
  3669. "Component_[18218639452101393004]": {
  3670. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3671. "Id": 18218639452101393004,
  3672. "sourceEndpoint": {
  3673. "nodeId": {
  3674. "id": 667126610216
  3675. },
  3676. "slotId": {
  3677. "m_id": "{F8BA927D-C203-4774-B6B8-105896ABCE7B}"
  3678. }
  3679. },
  3680. "targetEndpoint": {
  3681. "nodeId": {
  3682. "id": 649946741032
  3683. },
  3684. "slotId": {
  3685. "m_id": "{16402F39-DAA5-4AF6-ADE1-3871BC81BB00}"
  3686. }
  3687. }
  3688. }
  3689. }
  3690. },
  3691. {
  3692. "Id": {
  3693. "id": 868990073128
  3694. },
  3695. "Name": "srcEndpoint=(GetAutonomousToAuthorityNoParamsEventByEntityId: Out), destEndpoint=(AutonomousToAuthorityNoParams Notify Event: Connect)",
  3696. "Components": {
  3697. "Component_[11237387209429447954]": {
  3698. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3699. "Id": 11237387209429447954,
  3700. "sourceEndpoint": {
  3701. "nodeId": {
  3702. "id": 667126610216
  3703. },
  3704. "slotId": {
  3705. "m_id": "{0D95B08B-3116-4D95-BB25-C0AFEFF1A378}"
  3706. }
  3707. },
  3708. "targetEndpoint": {
  3709. "nodeId": {
  3710. "id": 649946741032
  3711. },
  3712. "slotId": {
  3713. "m_id": "{4F83556D-7779-4DB3-8735-4F100E8767B4}"
  3714. }
  3715. }
  3716. }
  3717. }
  3718. },
  3719. {
  3720. "Id": {
  3721. "id": 873285040424
  3722. },
  3723. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(GetAutonomousToAuthorityNoParamsEventByEntityId: In)",
  3724. "Components": {
  3725. "Component_[14326408768286503952]": {
  3726. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3727. "Id": 14326408768286503952,
  3728. "sourceEndpoint": {
  3729. "nodeId": {
  3730. "id": 675716544808
  3731. },
  3732. "slotId": {
  3733. "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
  3734. }
  3735. },
  3736. "targetEndpoint": {
  3737. "nodeId": {
  3738. "id": 667126610216
  3739. },
  3740. "slotId": {
  3741. "m_id": "{1567F6DF-6179-4A07-9013-65F98D972DFC}"
  3742. }
  3743. }
  3744. }
  3745. }
  3746. },
  3747. {
  3748. "Id": {
  3749. "id": 877580007720
  3750. },
  3751. "Name": "srcEndpoint=(AutonomousToAuthorityNoParams Notify Event: OnEvent), destEndpoint=(Print: In)",
  3752. "Components": {
  3753. "Component_[18298126443175496199]": {
  3754. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3755. "Id": 18298126443175496199,
  3756. "sourceEndpoint": {
  3757. "nodeId": {
  3758. "id": 649946741032
  3759. },
  3760. "slotId": {
  3761. "m_id": "{064CE7CC-F833-43C7-8CD0-4F06C03DD968}"
  3762. }
  3763. },
  3764. "targetEndpoint": {
  3765. "nodeId": {
  3766. "id": 727256152360
  3767. },
  3768. "slotId": {
  3769. "m_id": "{6AF0E823-D6E4-4AB5-8AFB-670186C0032F}"
  3770. }
  3771. }
  3772. }
  3773. }
  3774. },
  3775. {
  3776. "Id": {
  3777. "id": 881874975016
  3778. },
  3779. "Name": "srcEndpoint=(GetServerToAuthority_DealDamageEventByEntityId: Event<float >), destEndpoint=(ServerToAuthority_DealDamage Notify Event: ServerToAuthority_DealDamage Notify Event)",
  3780. "Components": {
  3781. "Component_[14047148712588711575]": {
  3782. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3783. "Id": 14047148712588711575,
  3784. "sourceEndpoint": {
  3785. "nodeId": {
  3786. "id": 645651773736
  3787. },
  3788. "slotId": {
  3789. "m_id": "{5E4E3BDB-125E-4FAE-8EA3-C601D948C0BE}"
  3790. }
  3791. },
  3792. "targetEndpoint": {
  3793. "nodeId": {
  3794. "id": 641356806440
  3795. },
  3796. "slotId": {
  3797. "m_id": "{CE461109-2456-42E7-A3FE-07FA2D35E340}"
  3798. }
  3799. }
  3800. }
  3801. }
  3802. },
  3803. {
  3804. "Id": {
  3805. "id": 886169942312
  3806. },
  3807. "Name": "srcEndpoint=(GetServerToAuthority_DealDamageEventByEntityId: Out), destEndpoint=(ServerToAuthority_DealDamage Notify Event: Connect)",
  3808. "Components": {
  3809. "Component_[13133185154836121468]": {
  3810. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3811. "Id": 13133185154836121468,
  3812. "sourceEndpoint": {
  3813. "nodeId": {
  3814. "id": 645651773736
  3815. },
  3816. "slotId": {
  3817. "m_id": "{ACF019EA-6965-4B75-8E6A-A2DFB2E5A21A}"
  3818. }
  3819. },
  3820. "targetEndpoint": {
  3821. "nodeId": {
  3822. "id": 641356806440
  3823. },
  3824. "slotId": {
  3825. "m_id": "{1B671324-5E8A-4DC2-9249-2E1D1BFAE54C}"
  3826. }
  3827. }
  3828. }
  3829. }
  3830. },
  3831. {
  3832. "Id": {
  3833. "id": 890464909608
  3834. },
  3835. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(GetServerToAuthority_DealDamageEventByEntityId: In)",
  3836. "Components": {
  3837. "Component_[11813585350330737537]": {
  3838. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3839. "Id": 11813585350330737537,
  3840. "sourceEndpoint": {
  3841. "nodeId": {
  3842. "id": 675716544808
  3843. },
  3844. "slotId": {
  3845. "m_id": "{A8EA9EF2-A3A6-46B5-8D43-08EF6B6B5B32}"
  3846. }
  3847. },
  3848. "targetEndpoint": {
  3849. "nodeId": {
  3850. "id": 645651773736
  3851. },
  3852. "slotId": {
  3853. "m_id": "{F5620DBD-DEC6-4798-87E5-08F8D8B2AA5E}"
  3854. }
  3855. }
  3856. }
  3857. }
  3858. },
  3859. {
  3860. "Id": {
  3861. "id": 894759876904
  3862. },
  3863. "Name": "srcEndpoint=(ServerToAuthority_DealDamage Notify Event: OnEvent), destEndpoint=(Print: In)",
  3864. "Components": {
  3865. "Component_[4358829553428628230]": {
  3866. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3867. "Id": 4358829553428628230,
  3868. "sourceEndpoint": {
  3869. "nodeId": {
  3870. "id": 641356806440
  3871. },
  3872. "slotId": {
  3873. "m_id": "{9D1F8BDB-A8E5-4E69-BCB8-4F6C03C6C925}"
  3874. }
  3875. },
  3876. "targetEndpoint": {
  3877. "nodeId": {
  3878. "id": 680011512104
  3879. },
  3880. "slotId": {
  3881. "m_id": "{F975C3B8-C19D-4564-A396-328596875392}"
  3882. }
  3883. }
  3884. }
  3885. }
  3886. },
  3887. {
  3888. "Id": {
  3889. "id": 899054844200
  3890. },
  3891. "Name": "srcEndpoint=(ServerToAuthority_DealDamage Notify Event: damage), destEndpoint=(Print: Value)",
  3892. "Components": {
  3893. "Component_[3482740561639949239]": {
  3894. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  3895. "Id": 3482740561639949239,
  3896. "sourceEndpoint": {
  3897. "nodeId": {
  3898. "id": 641356806440
  3899. },
  3900. "slotId": {
  3901. "m_id": "{F561949F-A404-4853-A50F-B9D54270418C}"
  3902. }
  3903. },
  3904. "targetEndpoint": {
  3905. "nodeId": {
  3906. "id": 680011512104
  3907. },
  3908. "slotId": {
  3909. "m_id": "{60799DC4-6A6B-497E-9B71-A91AD1213725}"
  3910. }
  3911. }
  3912. }
  3913. }
  3914. }
  3915. ],
  3916. "m_scriptEventAssets": [
  3917. [
  3918. {
  3919. "id": 740141054248
  3920. },
  3921. {}
  3922. ],
  3923. [
  3924. {
  3925. "id": 632766871848
  3926. },
  3927. {}
  3928. ]
  3929. ]
  3930. },
  3931. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  3932. "versionData": {
  3933. "_grammarVersion": 1,
  3934. "_runtimeVersion": 1,
  3935. "_fileVersion": 1
  3936. },
  3937. "m_variableCounter": 2,
  3938. "GraphCanvasData": [
  3939. {
  3940. "Key": {
  3941. "id": 624176937256
  3942. },
  3943. "Value": {
  3944. "ComponentData": {
  3945. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  3946. "$type": "SceneComponentSaveData",
  3947. "ViewParams": {
  3948. "AnchorX": 986.0,
  3949. "AnchorY": -597.0
  3950. }
  3951. }
  3952. }
  3953. }
  3954. },
  3955. {
  3956. "Key": {
  3957. "id": 628471904552
  3958. },
  3959. "Value": {
  3960. "ComponentData": {
  3961. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3962. "$type": "NodeSaveData"
  3963. },
  3964. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3965. "$type": "GeneralNodeTitleComponentSaveData",
  3966. "PaletteOverride": "MethodNodeTitlePalette"
  3967. },
  3968. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3969. "$type": "GeometrySaveData",
  3970. "Position": [
  3971. 240.0,
  3972. -220.0
  3973. ]
  3974. },
  3975. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3976. "$type": "StylingComponentSaveData",
  3977. "SubStyle": ".method"
  3978. },
  3979. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3980. "$type": "PersistentIdComponentSaveData",
  3981. "PersistentId": "{677F4AC3-62C8-46C0-91D9-A7C534E8A76D}"
  3982. }
  3983. }
  3984. }
  3985. },
  3986. {
  3987. "Key": {
  3988. "id": 632766871848
  3989. },
  3990. "Value": {
  3991. "ComponentData": {
  3992. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3993. "$type": "NodeSaveData"
  3994. },
  3995. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3996. "$type": "GeneralNodeTitleComponentSaveData",
  3997. "PaletteOverride": "MethodNodeTitlePalette"
  3998. },
  3999. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4000. "$type": "GeometrySaveData",
  4001. "Position": [
  4002. 1260.0,
  4003. 260.0
  4004. ]
  4005. },
  4006. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4007. "$type": "StylingComponentSaveData",
  4008. "SubStyle": ".method"
  4009. },
  4010. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4011. "$type": "PersistentIdComponentSaveData",
  4012. "PersistentId": "{13BD3C1C-EDBB-419E-8465-495935414A1A}"
  4013. }
  4014. }
  4015. }
  4016. },
  4017. {
  4018. "Key": {
  4019. "id": 637061839144
  4020. },
  4021. "Value": {
  4022. "ComponentData": {
  4023. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4024. "$type": "NodeSaveData"
  4025. },
  4026. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4027. "$type": "GeneralNodeTitleComponentSaveData",
  4028. "PaletteOverride": "StringNodeTitlePalette"
  4029. },
  4030. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4031. "$type": "GeometrySaveData",
  4032. "Position": [
  4033. 1460.0,
  4034. -1020.0
  4035. ]
  4036. },
  4037. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4038. "$type": "StylingComponentSaveData"
  4039. },
  4040. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4041. "$type": "PersistentIdComponentSaveData",
  4042. "PersistentId": "{3C9E0139-4F44-477A-B3BC-51CD051E5236}"
  4043. }
  4044. }
  4045. }
  4046. },
  4047. {
  4048. "Key": {
  4049. "id": 641356806440
  4050. },
  4051. "Value": {
  4052. "ComponentData": {
  4053. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4054. "$type": "NodeSaveData"
  4055. },
  4056. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4057. "$type": "GeneralNodeTitleComponentSaveData",
  4058. "PaletteOverride": "HandlerNodeTitlePalette"
  4059. },
  4060. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4061. "$type": "GeometrySaveData",
  4062. "Position": [
  4063. 680.0,
  4064. 1060.0
  4065. ]
  4066. },
  4067. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4068. "$type": "StylingComponentSaveData",
  4069. "SubStyle": ".azeventhandler"
  4070. },
  4071. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4072. "$type": "PersistentIdComponentSaveData",
  4073. "PersistentId": "{3769CDE9-705B-49E2-ABD7-3F7BF45875D8}"
  4074. }
  4075. }
  4076. }
  4077. },
  4078. {
  4079. "Key": {
  4080. "id": 645651773736
  4081. },
  4082. "Value": {
  4083. "ComponentData": {
  4084. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4085. "$type": "NodeSaveData"
  4086. },
  4087. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4088. "$type": "GeneralNodeTitleComponentSaveData",
  4089. "PaletteOverride": "MethodNodeTitlePalette"
  4090. },
  4091. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4092. "$type": "GeometrySaveData",
  4093. "Position": [
  4094. 240.0,
  4095. 1060.0
  4096. ]
  4097. },
  4098. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4099. "$type": "StylingComponentSaveData",
  4100. "SubStyle": ".method"
  4101. },
  4102. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4103. "$type": "PersistentIdComponentSaveData",
  4104. "PersistentId": "{FEE9EB8A-F25A-483A-AB59-1DF7F266B14B}"
  4105. }
  4106. }
  4107. }
  4108. },
  4109. {
  4110. "Key": {
  4111. "id": 649946741032
  4112. },
  4113. "Value": {
  4114. "ComponentData": {
  4115. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4116. "$type": "NodeSaveData"
  4117. },
  4118. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4119. "$type": "GeneralNodeTitleComponentSaveData",
  4120. "PaletteOverride": "HandlerNodeTitlePalette"
  4121. },
  4122. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4123. "$type": "GeometrySaveData",
  4124. "Position": [
  4125. 680.0,
  4126. -540.0
  4127. ]
  4128. },
  4129. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4130. "$type": "StylingComponentSaveData",
  4131. "SubStyle": ".azeventhandler"
  4132. },
  4133. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4134. "$type": "PersistentIdComponentSaveData",
  4135. "PersistentId": "{AC250DE5-04C6-4055-9E4B-80BCB6D71065}"
  4136. }
  4137. }
  4138. }
  4139. },
  4140. {
  4141. "Key": {
  4142. "id": 654241708328
  4143. },
  4144. "Value": {
  4145. "ComponentData": {
  4146. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4147. "$type": "NodeSaveData"
  4148. },
  4149. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4150. "$type": "GeneralNodeTitleComponentSaveData",
  4151. "PaletteOverride": "StringNodeTitlePalette"
  4152. },
  4153. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4154. "$type": "GeometrySaveData",
  4155. "Position": [
  4156. 1460.0,
  4157. -800.0
  4158. ]
  4159. },
  4160. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4161. "$type": "StylingComponentSaveData"
  4162. },
  4163. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4164. "$type": "PersistentIdComponentSaveData",
  4165. "PersistentId": "{644E904C-4D65-4E7C-85D9-E6380169703C}"
  4166. }
  4167. }
  4168. }
  4169. },
  4170. {
  4171. "Key": {
  4172. "id": 658536675624
  4173. },
  4174. "Value": {
  4175. "ComponentData": {
  4176. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4177. "$type": "NodeSaveData"
  4178. },
  4179. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4180. "$type": "GeneralNodeTitleComponentSaveData",
  4181. "PaletteOverride": "LogicNodeTitlePalette"
  4182. },
  4183. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4184. "$type": "GeometrySaveData",
  4185. "Position": [
  4186. 660.0,
  4187. 260.0
  4188. ]
  4189. },
  4190. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4191. "$type": "StylingComponentSaveData"
  4192. },
  4193. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4194. "$type": "PersistentIdComponentSaveData",
  4195. "PersistentId": "{53C8DAF1-FFF3-4AF8-A7FB-BC0B4E492B37}"
  4196. }
  4197. }
  4198. }
  4199. },
  4200. {
  4201. "Key": {
  4202. "id": 662831642920
  4203. },
  4204. "Value": {
  4205. "ComponentData": {
  4206. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4207. "$type": "NodeSaveData"
  4208. },
  4209. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4210. "$type": "GeneralNodeTitleComponentSaveData",
  4211. "PaletteOverride": "StringNodeTitlePalette"
  4212. },
  4213. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4214. "$type": "GeometrySaveData",
  4215. "Position": [
  4216. 2300.0,
  4217. 260.0
  4218. ]
  4219. },
  4220. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4221. "$type": "StylingComponentSaveData"
  4222. },
  4223. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4224. "$type": "PersistentIdComponentSaveData",
  4225. "PersistentId": "{B91C0E41-E6B5-46DE-885F-6BC6CFB2E813}"
  4226. }
  4227. }
  4228. }
  4229. },
  4230. {
  4231. "Key": {
  4232. "id": 667126610216
  4233. },
  4234. "Value": {
  4235. "ComponentData": {
  4236. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4237. "$type": "NodeSaveData"
  4238. },
  4239. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4240. "$type": "GeneralNodeTitleComponentSaveData",
  4241. "PaletteOverride": "MethodNodeTitlePalette"
  4242. },
  4243. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4244. "$type": "GeometrySaveData",
  4245. "Position": [
  4246. 240.0,
  4247. -540.0
  4248. ]
  4249. },
  4250. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4251. "$type": "StylingComponentSaveData",
  4252. "SubStyle": ".method"
  4253. },
  4254. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4255. "$type": "PersistentIdComponentSaveData",
  4256. "PersistentId": "{52EAEE40-161F-43C9-BAF5-12E0360B4041}"
  4257. }
  4258. }
  4259. }
  4260. },
  4261. {
  4262. "Key": {
  4263. "id": 671421577512
  4264. },
  4265. "Value": {
  4266. "ComponentData": {
  4267. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4268. "$type": "NodeSaveData"
  4269. },
  4270. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4271. "$type": "GeneralNodeTitleComponentSaveData",
  4272. "PaletteOverride": "StringNodeTitlePalette"
  4273. },
  4274. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4275. "$type": "GeometrySaveData",
  4276. "Position": [
  4277. 1560.0,
  4278. -100.0
  4279. ]
  4280. },
  4281. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4282. "$type": "StylingComponentSaveData"
  4283. },
  4284. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4285. "$type": "PersistentIdComponentSaveData",
  4286. "PersistentId": "{7E640BC3-B098-4567-9498-700B8021DE5B}"
  4287. }
  4288. }
  4289. }
  4290. },
  4291. {
  4292. "Key": {
  4293. "id": 675716544808
  4294. },
  4295. "Value": {
  4296. "ComponentData": {
  4297. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4298. "$type": "NodeSaveData"
  4299. },
  4300. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4301. "$type": "GeneralNodeTitleComponentSaveData",
  4302. "PaletteOverride": "TimeNodeTitlePalette"
  4303. },
  4304. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4305. "$type": "GeometrySaveData",
  4306. "Position": [
  4307. 40.0,
  4308. 280.0
  4309. ]
  4310. },
  4311. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4312. "$type": "StylingComponentSaveData"
  4313. },
  4314. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4315. "$type": "PersistentIdComponentSaveData",
  4316. "PersistentId": "{B4CB62D9-9965-42E2-81FF-BDADDBD14CBE}"
  4317. }
  4318. }
  4319. }
  4320. },
  4321. {
  4322. "Key": {
  4323. "id": 680011512104
  4324. },
  4325. "Value": {
  4326. "ComponentData": {
  4327. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4328. "$type": "NodeSaveData"
  4329. },
  4330. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4331. "$type": "GeneralNodeTitleComponentSaveData",
  4332. "PaletteOverride": "StringNodeTitlePalette"
  4333. },
  4334. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4335. "$type": "GeometrySaveData",
  4336. "Position": [
  4337. 1120.0,
  4338. 1060.0
  4339. ]
  4340. },
  4341. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4342. "$type": "StylingComponentSaveData"
  4343. },
  4344. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4345. "$type": "PersistentIdComponentSaveData",
  4346. "PersistentId": "{CC424225-28D7-4212-9034-14E35F536839}"
  4347. }
  4348. }
  4349. }
  4350. },
  4351. {
  4352. "Key": {
  4353. "id": 684306479400
  4354. },
  4355. "Value": {
  4356. "ComponentData": {
  4357. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4358. "$type": "NodeSaveData"
  4359. },
  4360. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4361. "$type": "GeneralNodeTitleComponentSaveData",
  4362. "PaletteOverride": "MethodNodeTitlePalette"
  4363. },
  4364. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4365. "$type": "GeometrySaveData",
  4366. "Position": [
  4367. 260.0,
  4368. -980.0
  4369. ]
  4370. },
  4371. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4372. "$type": "StylingComponentSaveData",
  4373. "SubStyle": ".method"
  4374. },
  4375. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4376. "$type": "PersistentIdComponentSaveData",
  4377. "PersistentId": "{2FD86165-1AC2-4405-81BF-ADC7D383E433}"
  4378. }
  4379. }
  4380. }
  4381. },
  4382. {
  4383. "Key": {
  4384. "id": 688601446696
  4385. },
  4386. "Value": {
  4387. "ComponentData": {
  4388. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4389. "$type": "NodeSaveData"
  4390. },
  4391. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4392. "$type": "GeneralNodeTitleComponentSaveData",
  4393. "PaletteOverride": "MethodNodeTitlePalette"
  4394. },
  4395. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4396. "$type": "GeometrySaveData",
  4397. "Position": [
  4398. 1020.0,
  4399. -1000.0
  4400. ]
  4401. },
  4402. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4403. "$type": "StylingComponentSaveData",
  4404. "SubStyle": ".method"
  4405. },
  4406. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4407. "$type": "PersistentIdComponentSaveData",
  4408. "PersistentId": "{CE27F868-B717-4687-82F9-7B3AE09FDFE6}"
  4409. }
  4410. }
  4411. }
  4412. },
  4413. {
  4414. "Key": {
  4415. "id": 692896413992
  4416. },
  4417. "Value": {
  4418. "ComponentData": {
  4419. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4420. "$type": "NodeSaveData"
  4421. },
  4422. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4423. "$type": "GeneralNodeTitleComponentSaveData",
  4424. "PaletteOverride": "MethodNodeTitlePalette"
  4425. },
  4426. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4427. "$type": "GeometrySaveData",
  4428. "Position": [
  4429. 1860.0,
  4430. 260.0
  4431. ]
  4432. },
  4433. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4434. "$type": "StylingComponentSaveData",
  4435. "SubStyle": ".method"
  4436. },
  4437. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4438. "$type": "PersistentIdComponentSaveData",
  4439. "PersistentId": "{59FFF3C1-2D7B-47EA-AE35-ED15DCB95CC8}"
  4440. }
  4441. }
  4442. }
  4443. },
  4444. {
  4445. "Key": {
  4446. "id": 697191381288
  4447. },
  4448. "Value": {
  4449. "ComponentData": {
  4450. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4451. "$type": "NodeSaveData"
  4452. },
  4453. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4454. "$type": "GeneralNodeTitleComponentSaveData",
  4455. "PaletteOverride": "MethodNodeTitlePalette"
  4456. },
  4457. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4458. "$type": "GeometrySaveData",
  4459. "Position": [
  4460. 1020.0,
  4461. -800.0
  4462. ]
  4463. },
  4464. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4465. "$type": "StylingComponentSaveData",
  4466. "SubStyle": ".method"
  4467. },
  4468. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4469. "$type": "PersistentIdComponentSaveData",
  4470. "PersistentId": "{BA2AD6A3-E3A8-4EDE-BB68-4AAE75C01B33}"
  4471. }
  4472. }
  4473. }
  4474. },
  4475. {
  4476. "Key": {
  4477. "id": 701486348584
  4478. },
  4479. "Value": {
  4480. "ComponentData": {
  4481. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4482. "$type": "NodeSaveData"
  4483. },
  4484. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4485. "$type": "GeneralNodeTitleComponentSaveData",
  4486. "PaletteOverride": "MethodNodeTitlePalette"
  4487. },
  4488. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4489. "$type": "GeometrySaveData",
  4490. "Position": [
  4491. 360.0,
  4492. 620.0
  4493. ]
  4494. },
  4495. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4496. "$type": "StylingComponentSaveData",
  4497. "SubStyle": ".method"
  4498. },
  4499. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4500. "$type": "PersistentIdComponentSaveData",
  4501. "PersistentId": "{BBBE60FC-0215-4A5A-BEBE-4FC869E5EECE}"
  4502. }
  4503. }
  4504. }
  4505. },
  4506. {
  4507. "Key": {
  4508. "id": 705781315880
  4509. },
  4510. "Value": {
  4511. "ComponentData": {
  4512. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4513. "$type": "NodeSaveData"
  4514. },
  4515. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4516. "$type": "GeneralNodeTitleComponentSaveData",
  4517. "PaletteOverride": "LogicNodeTitlePalette"
  4518. },
  4519. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4520. "$type": "GeometrySaveData",
  4521. "Position": [
  4522. 700.0,
  4523. -980.0
  4524. ]
  4525. },
  4526. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4527. "$type": "StylingComponentSaveData"
  4528. },
  4529. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4530. "$type": "PersistentIdComponentSaveData",
  4531. "PersistentId": "{9BACEF23-AB74-4BB2-9AF0-1BA8280CF1CF}"
  4532. }
  4533. }
  4534. }
  4535. },
  4536. {
  4537. "Key": {
  4538. "id": 710076283176
  4539. },
  4540. "Value": {
  4541. "ComponentData": {
  4542. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4543. "$type": "NodeSaveData"
  4544. },
  4545. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4546. "$type": "GeneralNodeTitleComponentSaveData",
  4547. "PaletteOverride": "TimeNodeTitlePalette"
  4548. },
  4549. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4550. "$type": "GeometrySaveData",
  4551. "Position": [
  4552. 960.0,
  4553. 220.0
  4554. ]
  4555. },
  4556. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4557. "$type": "StylingComponentSaveData"
  4558. },
  4559. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4560. "$type": "PersistentIdComponentSaveData",
  4561. "PersistentId": "{5DF902FE-B0C4-4563-B2BA-17996B24E211}"
  4562. }
  4563. }
  4564. }
  4565. },
  4566. {
  4567. "Key": {
  4568. "id": 714371250472
  4569. },
  4570. "Value": {
  4571. "ComponentData": {
  4572. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4573. "$type": "NodeSaveData"
  4574. },
  4575. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4576. "$type": "GeneralNodeTitleComponentSaveData",
  4577. "PaletteOverride": "MethodNodeTitlePalette"
  4578. },
  4579. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4580. "$type": "GeometrySaveData",
  4581. "Position": [
  4582. 220.0,
  4583. 260.0
  4584. ]
  4585. },
  4586. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4587. "$type": "StylingComponentSaveData",
  4588. "SubStyle": ".method"
  4589. },
  4590. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4591. "$type": "PersistentIdComponentSaveData",
  4592. "PersistentId": "{348E780E-3A4E-47C7-ACF5-C7B2CB387517}"
  4593. }
  4594. }
  4595. }
  4596. },
  4597. {
  4598. "Key": {
  4599. "id": 718666217768
  4600. },
  4601. "Value": {
  4602. "ComponentData": {
  4603. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4604. "$type": "NodeSaveData"
  4605. },
  4606. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4607. "$type": "GeneralNodeTitleComponentSaveData",
  4608. "PaletteOverride": "HandlerNodeTitlePalette"
  4609. },
  4610. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4611. "$type": "GeometrySaveData",
  4612. "Position": [
  4613. 680.0,
  4614. -220.0
  4615. ]
  4616. },
  4617. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4618. "$type": "StylingComponentSaveData",
  4619. "SubStyle": ".azeventhandler"
  4620. },
  4621. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4622. "$type": "PersistentIdComponentSaveData",
  4623. "PersistentId": "{C62FF7E4-1CDC-4D25-937D-5129BA80EBFB}"
  4624. }
  4625. }
  4626. }
  4627. },
  4628. {
  4629. "Key": {
  4630. "id": 722961185064
  4631. },
  4632. "Value": {
  4633. "ComponentData": {
  4634. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4635. "$type": "NodeSaveData"
  4636. },
  4637. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4638. "$type": "GeneralNodeTitleComponentSaveData",
  4639. "PaletteOverride": "StringNodeTitlePalette"
  4640. },
  4641. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4642. "$type": "GeometrySaveData",
  4643. "Position": [
  4644. 1440.0,
  4645. 620.0
  4646. ]
  4647. },
  4648. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4649. "$type": "StylingComponentSaveData"
  4650. },
  4651. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4652. "$type": "PersistentIdComponentSaveData",
  4653. "PersistentId": "{74ED5AE1-A269-46D4-B968-FEDF513C9CF1}"
  4654. }
  4655. }
  4656. }
  4657. },
  4658. {
  4659. "Key": {
  4660. "id": 727256152360
  4661. },
  4662. "Value": {
  4663. "ComponentData": {
  4664. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4665. "$type": "NodeSaveData"
  4666. },
  4667. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4668. "$type": "GeneralNodeTitleComponentSaveData",
  4669. "PaletteOverride": "StringNodeTitlePalette"
  4670. },
  4671. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4672. "$type": "GeometrySaveData",
  4673. "Position": [
  4674. 1120.0,
  4675. -540.0
  4676. ]
  4677. },
  4678. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4679. "$type": "StylingComponentSaveData"
  4680. },
  4681. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4682. "$type": "PersistentIdComponentSaveData",
  4683. "PersistentId": "{55ADCEF4-F000-4684-9EBD-C0DD93AE6F22}"
  4684. }
  4685. }
  4686. }
  4687. },
  4688. {
  4689. "Key": {
  4690. "id": 731551119656
  4691. },
  4692. "Value": {
  4693. "ComponentData": {
  4694. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4695. "$type": "NodeSaveData"
  4696. },
  4697. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4698. "$type": "GeneralNodeTitleComponentSaveData",
  4699. "PaletteOverride": "HandlerNodeTitlePalette"
  4700. },
  4701. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4702. "$type": "GeometrySaveData",
  4703. "Position": [
  4704. 820.0,
  4705. 620.0
  4706. ]
  4707. },
  4708. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4709. "$type": "StylingComponentSaveData",
  4710. "SubStyle": ".azeventhandler"
  4711. },
  4712. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4713. "$type": "PersistentIdComponentSaveData",
  4714. "PersistentId": "{F112D217-FAC8-4577-B67A-DFDF47842F7D}"
  4715. }
  4716. }
  4717. }
  4718. },
  4719. {
  4720. "Key": {
  4721. "id": 735846086952
  4722. },
  4723. "Value": {
  4724. "ComponentData": {
  4725. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4726. "$type": "NodeSaveData"
  4727. },
  4728. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4729. "$type": "GeneralNodeTitleComponentSaveData",
  4730. "PaletteOverride": "MathNodeTitlePalette"
  4731. },
  4732. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4733. "$type": "GeometrySaveData",
  4734. "Position": [
  4735. 1120.0,
  4736. -220.0
  4737. ]
  4738. },
  4739. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4740. "$type": "StylingComponentSaveData"
  4741. },
  4742. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4743. "$type": "PersistentIdComponentSaveData",
  4744. "PersistentId": "{0C748650-CB08-4963-9CC7-112F01A130D4}"
  4745. }
  4746. }
  4747. }
  4748. },
  4749. {
  4750. "Key": {
  4751. "id": 740141054248
  4752. },
  4753. "Value": {
  4754. "ComponentData": {
  4755. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4756. "$type": "NodeSaveData"
  4757. },
  4758. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4759. "$type": "GeneralNodeTitleComponentSaveData",
  4760. "PaletteOverride": "MethodNodeTitlePalette"
  4761. },
  4762. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4763. "$type": "GeometrySaveData",
  4764. "Position": [
  4765. 1560.0,
  4766. 260.0
  4767. ]
  4768. },
  4769. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4770. "$type": "StylingComponentSaveData",
  4771. "SubStyle": ".method"
  4772. },
  4773. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4774. "$type": "PersistentIdComponentSaveData",
  4775. "PersistentId": "{FD844BFD-72DA-44BA-B92A-AFDB58263B91}"
  4776. }
  4777. }
  4778. }
  4779. },
  4780. {
  4781. "Key": {
  4782. "id": 744436021544
  4783. },
  4784. "Value": {
  4785. "ComponentData": {
  4786. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  4787. "$type": "NodeSaveData"
  4788. },
  4789. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  4790. "$type": "GeneralNodeTitleComponentSaveData",
  4791. "PaletteOverride": "StringNodeTitlePalette"
  4792. },
  4793. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  4794. "$type": "GeometrySaveData",
  4795. "Position": [
  4796. 1560.0,
  4797. -320.0
  4798. ]
  4799. },
  4800. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  4801. "$type": "StylingComponentSaveData"
  4802. },
  4803. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  4804. "$type": "PersistentIdComponentSaveData",
  4805. "PersistentId": "{3BFB0965-71E1-4A23-AFB4-B022CE5149CA}"
  4806. }
  4807. }
  4808. }
  4809. }
  4810. ],
  4811. "StatisticsHelper": {
  4812. "InstanceCounter": [
  4813. {
  4814. "Key": 3117476785392655547,
  4815. "Value": 1
  4816. },
  4817. {
  4818. "Key": 3511345470581217769,
  4819. "Value": 1
  4820. },
  4821. {
  4822. "Key": 4199610336680704683,
  4823. "Value": 1
  4824. },
  4825. {
  4826. "Key": 4847610523576971761,
  4827. "Value": 4
  4828. },
  4829. {
  4830. "Key": 6462358712820489356,
  4831. "Value": 1
  4832. },
  4833. {
  4834. "Key": 7760188923571293852,
  4835. "Value": 1
  4836. },
  4837. {
  4838. "Key": 8065262779685207188,
  4839. "Value": 1
  4840. },
  4841. {
  4842. "Key": 8452971738487658154,
  4843. "Value": 2
  4844. },
  4845. {
  4846. "Key": 10684225535275896474,
  4847. "Value": 8
  4848. },
  4849. {
  4850. "Key": 11054285154341423690,
  4851. "Value": 1
  4852. },
  4853. {
  4854. "Key": 12248403816200817622,
  4855. "Value": 1
  4856. },
  4857. {
  4858. "Key": 12248403882232298424,
  4859. "Value": 1
  4860. },
  4861. {
  4862. "Key": 14130684278223165471,
  4863. "Value": 1
  4864. },
  4865. {
  4866. "Key": 15595742303933584947,
  4867. "Value": 1
  4868. },
  4869. {
  4870. "Key": 16186981969449803870,
  4871. "Value": 1
  4872. },
  4873. {
  4874. "Key": 16232169425081397848,
  4875. "Value": 1
  4876. },
  4877. {
  4878. "Key": 16791818572088803365,
  4879. "Value": 1
  4880. }
  4881. ]
  4882. }
  4883. }
  4884. }
  4885. }
  4886. }
  4887. }