3
0

LY_SC_UnitTest_DivideByNumber.scriptcanvas 189 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276
  1. {
  2. "Type": "JsonSerialization",
  3. "Version": 1,
  4. "ClassName": "ScriptCanvasData",
  5. "ClassData": {
  6. "m_scriptCanvas": {
  7. "Id": {
  8. "id": 1169026995017774
  9. },
  10. "Name": "OnWriteEndOrder",
  11. "Components": {
  12. "Component_[13782405326397143739]": {
  13. "$type": "EditorGraph",
  14. "Id": 13782405326397143739,
  15. "m_graphData": {
  16. "m_nodes": [
  17. {
  18. "Id": {
  19. "id": 1169057059788846
  20. },
  21. "Name": "SC-Node(Divide By Number (/))",
  22. "Components": {
  23. "Component_[10683825100058298352]": {
  24. "$type": "MethodOverloaded",
  25. "Id": 10683825100058298352,
  26. "Slots": [
  27. {
  28. "IsOverload": true,
  29. "id": {
  30. "m_id": "{61B8CF69-003E-4689-8785-F8AE91F7409E}"
  31. },
  32. "DynamicTypeOverride": 3,
  33. "contracts": [
  34. {
  35. "$type": "SlotTypeContract"
  36. },
  37. null
  38. ],
  39. "slotName": "Vector3: 0",
  40. "DisplayDataType": {
  41. "m_type": 8
  42. },
  43. "Descriptor": {
  44. "ConnectionType": 1,
  45. "SlotType": 2
  46. },
  47. "DataType": 1,
  48. "IsReference": true,
  49. "VariableReference": {
  50. "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
  51. }
  52. },
  53. {
  54. "IsOverload": true,
  55. "id": {
  56. "m_id": "{C9F52DDB-6769-4BBC-8E42-7389F46E5381}"
  57. },
  58. "DynamicTypeOverride": 3,
  59. "contracts": [
  60. {
  61. "$type": "SlotTypeContract"
  62. },
  63. null
  64. ],
  65. "slotName": "Number: 1",
  66. "DisplayDataType": {
  67. "m_type": 3
  68. },
  69. "Descriptor": {
  70. "ConnectionType": 1,
  71. "SlotType": 2
  72. },
  73. "DataType": 1
  74. },
  75. {
  76. "id": {
  77. "m_id": "{843925B3-3829-4145-9400-0282F671EF95}"
  78. },
  79. "contracts": [
  80. {
  81. "$type": "SlotTypeContract"
  82. }
  83. ],
  84. "slotName": "In",
  85. "Descriptor": {
  86. "ConnectionType": 1,
  87. "SlotType": 1
  88. }
  89. },
  90. {
  91. "id": {
  92. "m_id": "{66A545AC-0303-4B09-82D7-ED6D185F2368}"
  93. },
  94. "contracts": [
  95. {
  96. "$type": "SlotTypeContract"
  97. }
  98. ],
  99. "slotName": "Out",
  100. "Descriptor": {
  101. "ConnectionType": 2,
  102. "SlotType": 1
  103. }
  104. },
  105. {
  106. "IsOverload": true,
  107. "id": {
  108. "m_id": "{EE36CC11-38C7-4A4D-9D0F-BD567B4C817F}"
  109. },
  110. "DynamicTypeOverride": 3,
  111. "contracts": [
  112. {
  113. "$type": "SlotTypeContract"
  114. }
  115. ],
  116. "slotName": "Vector3",
  117. "DisplayDataType": {
  118. "m_type": 8
  119. },
  120. "Descriptor": {
  121. "ConnectionType": 2,
  122. "SlotType": 2
  123. },
  124. "DataType": 1
  125. }
  126. ],
  127. "Datums": [
  128. {
  129. "isOverloadedStorage": false,
  130. "scriptCanvasType": {
  131. "m_type": 8
  132. },
  133. "isNullPointer": false,
  134. "$type": "Vector3",
  135. "value": [
  136. 0.0,
  137. 0.0,
  138. 0.0
  139. ],
  140. "label": "Vector3: 0"
  141. },
  142. {
  143. "isOverloadedStorage": false,
  144. "scriptCanvasType": {
  145. "m_type": 3
  146. },
  147. "isNullPointer": false,
  148. "$type": "double",
  149. "value": 0.0,
  150. "label": "Number: 1"
  151. }
  152. ],
  153. "methodType": 2,
  154. "methodName": "Divide By Number (/)",
  155. "className": "Vector3",
  156. "resultSlotIDs": [
  157. {}
  158. ],
  159. "prettyClassName": "Vector3",
  160. "orderedInputSlotIds": [
  161. {
  162. "m_id": "{61B8CF69-003E-4689-8785-F8AE91F7409E}"
  163. },
  164. {
  165. "m_id": "{C9F52DDB-6769-4BBC-8E42-7389F46E5381}"
  166. }
  167. ],
  168. "outputSlotIds": [
  169. {
  170. "m_id": "{EE36CC11-38C7-4A4D-9D0F-BD567B4C817F}"
  171. }
  172. ]
  173. }
  174. }
  175. },
  176. {
  177. "Id": {
  178. "id": 1169044174886958
  179. },
  180. "Name": "SC-Node(Mark Complete)",
  181. "Components": {
  182. "Component_[10875134299634319857]": {
  183. "$type": "{E42861BD-1956-45AE-8DD7-CCFC1E3E5ACF} Method",
  184. "Id": 10875134299634319857,
  185. "Slots": [
  186. {
  187. "isVisibile": false,
  188. "id": {
  189. "m_id": "{CA8A062B-D088-45B6-9354-119DCCBEC9F1}"
  190. },
  191. "contracts": [
  192. {
  193. "$type": "SlotTypeContract"
  194. },
  195. null
  196. ],
  197. "slotName": "EntityID: 0",
  198. "Descriptor": {
  199. "ConnectionType": 1,
  200. "SlotType": 2
  201. },
  202. "DataType": 1
  203. },
  204. {
  205. "id": {
  206. "m_id": "{B0C77482-CA29-4BF0-AEB9-2A5C944EC118}"
  207. },
  208. "contracts": [
  209. {
  210. "$type": "SlotTypeContract"
  211. },
  212. null
  213. ],
  214. "slotName": "Report",
  215. "toolTip": "additional notes for the test report",
  216. "Descriptor": {
  217. "ConnectionType": 1,
  218. "SlotType": 2
  219. },
  220. "DataType": 1
  221. },
  222. {
  223. "id": {
  224. "m_id": "{16DE57F4-B4A8-4421-A9D3-8AA1D8DD78E9}"
  225. },
  226. "contracts": [
  227. {
  228. "$type": "SlotTypeContract"
  229. }
  230. ],
  231. "slotName": "In",
  232. "Descriptor": {
  233. "ConnectionType": 1,
  234. "SlotType": 1
  235. }
  236. },
  237. {
  238. "id": {
  239. "m_id": "{E3344397-341D-4BC3-9CFE-7D3B67A5D076}"
  240. },
  241. "contracts": [
  242. {
  243. "$type": "SlotTypeContract"
  244. }
  245. ],
  246. "slotName": "Out",
  247. "Descriptor": {
  248. "ConnectionType": 2,
  249. "SlotType": 1
  250. }
  251. }
  252. ],
  253. "Datums": [
  254. {
  255. "isOverloadedStorage": false,
  256. "scriptCanvasType": {
  257. "m_type": 1
  258. },
  259. "isNullPointer": false,
  260. "$type": "EntityId",
  261. "value": {
  262. "id": 4276206253
  263. }
  264. },
  265. {
  266. "isOverloadedStorage": false,
  267. "scriptCanvasType": {
  268. "m_type": 5
  269. },
  270. "isNullPointer": false,
  271. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  272. "value": "",
  273. "label": "Report"
  274. }
  275. ],
  276. "methodType": 2,
  277. "methodName": "Mark Complete",
  278. "className": "Unit Testing",
  279. "resultSlotIDs": [
  280. {}
  281. ],
  282. "prettyClassName": "Unit Testing"
  283. }
  284. }
  285. },
  286. {
  287. "Id": {
  288. "id": 1169035584952366
  289. },
  290. "Name": "SC-Node(Divide By Number (/))",
  291. "Components": {
  292. "Component_[11561682613071137554]": {
  293. "$type": "MethodOverloaded",
  294. "Id": 11561682613071137554,
  295. "Slots": [
  296. {
  297. "IsOverload": true,
  298. "id": {
  299. "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
  300. },
  301. "DynamicTypeOverride": 3,
  302. "contracts": [
  303. {
  304. "$type": "SlotTypeContract"
  305. },
  306. null
  307. ],
  308. "slotName": "Vector2: 0",
  309. "DisplayDataType": {
  310. "m_type": 9
  311. },
  312. "Descriptor": {
  313. "ConnectionType": 1,
  314. "SlotType": 2
  315. },
  316. "DataType": 1
  317. },
  318. {
  319. "IsOverload": true,
  320. "id": {
  321. "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
  322. },
  323. "DynamicTypeOverride": 3,
  324. "contracts": [
  325. {
  326. "$type": "SlotTypeContract"
  327. },
  328. null
  329. ],
  330. "slotName": "Number: 1",
  331. "DisplayDataType": {
  332. "m_type": 3
  333. },
  334. "Descriptor": {
  335. "ConnectionType": 1,
  336. "SlotType": 2
  337. },
  338. "DataType": 1,
  339. "IsReference": true,
  340. "VariableReference": {
  341. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  342. }
  343. },
  344. {
  345. "id": {
  346. "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
  347. },
  348. "contracts": [
  349. {
  350. "$type": "SlotTypeContract"
  351. }
  352. ],
  353. "slotName": "In",
  354. "Descriptor": {
  355. "ConnectionType": 1,
  356. "SlotType": 1
  357. }
  358. },
  359. {
  360. "id": {
  361. "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
  362. },
  363. "contracts": [
  364. {
  365. "$type": "SlotTypeContract"
  366. }
  367. ],
  368. "slotName": "Out",
  369. "Descriptor": {
  370. "ConnectionType": 2,
  371. "SlotType": 1
  372. }
  373. },
  374. {
  375. "IsOverload": true,
  376. "id": {
  377. "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
  378. },
  379. "DynamicTypeOverride": 3,
  380. "contracts": [
  381. {
  382. "$type": "SlotTypeContract"
  383. }
  384. ],
  385. "slotName": "Vector2",
  386. "DisplayDataType": {
  387. "m_type": 9
  388. },
  389. "Descriptor": {
  390. "ConnectionType": 2,
  391. "SlotType": 2
  392. },
  393. "DataType": 1
  394. }
  395. ],
  396. "Datums": [
  397. {
  398. "isOverloadedStorage": false,
  399. "scriptCanvasType": {
  400. "m_type": 9
  401. },
  402. "isNullPointer": false,
  403. "$type": "Vector2",
  404. "value": [
  405. 0.0,
  406. 0.0
  407. ],
  408. "label": "Vector2: 0"
  409. },
  410. {
  411. "isOverloadedStorage": false,
  412. "scriptCanvasType": {
  413. "m_type": 3
  414. },
  415. "isNullPointer": false,
  416. "$type": "double",
  417. "value": 0.01,
  418. "label": "Number: 1"
  419. }
  420. ],
  421. "methodType": 2,
  422. "methodName": "Divide By Number (/)",
  423. "className": "Vector2",
  424. "resultSlotIDs": [
  425. {}
  426. ],
  427. "prettyClassName": "Vector2",
  428. "orderedInputSlotIds": [
  429. {
  430. "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
  431. },
  432. {
  433. "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
  434. }
  435. ],
  436. "outputSlotIds": [
  437. {
  438. "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
  439. }
  440. ]
  441. }
  442. }
  443. },
  444. {
  445. "Id": {
  446. "id": 1169052764821550
  447. },
  448. "Name": "SC-Node(Divide By Number (/))",
  449. "Components": {
  450. "Component_[11561682613071137554]": {
  451. "$type": "MethodOverloaded",
  452. "Id": 11561682613071137554,
  453. "Slots": [
  454. {
  455. "IsOverload": true,
  456. "id": {
  457. "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
  458. },
  459. "DynamicTypeOverride": 3,
  460. "contracts": [
  461. {
  462. "$type": "SlotTypeContract"
  463. },
  464. null
  465. ],
  466. "slotName": "Number: 0",
  467. "DisplayDataType": {
  468. "m_type": 3
  469. },
  470. "Descriptor": {
  471. "ConnectionType": 1,
  472. "SlotType": 2
  473. },
  474. "DataType": 1
  475. },
  476. {
  477. "IsOverload": true,
  478. "id": {
  479. "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
  480. },
  481. "DynamicTypeOverride": 3,
  482. "contracts": [
  483. {
  484. "$type": "SlotTypeContract"
  485. },
  486. null
  487. ],
  488. "slotName": "Number: 1",
  489. "DisplayDataType": {
  490. "m_type": 3
  491. },
  492. "Descriptor": {
  493. "ConnectionType": 1,
  494. "SlotType": 2
  495. },
  496. "DataType": 1,
  497. "IsReference": true,
  498. "VariableReference": {
  499. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  500. }
  501. },
  502. {
  503. "id": {
  504. "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
  505. },
  506. "contracts": [
  507. {
  508. "$type": "SlotTypeContract"
  509. }
  510. ],
  511. "slotName": "In",
  512. "Descriptor": {
  513. "ConnectionType": 1,
  514. "SlotType": 1
  515. }
  516. },
  517. {
  518. "id": {
  519. "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
  520. },
  521. "contracts": [
  522. {
  523. "$type": "SlotTypeContract"
  524. }
  525. ],
  526. "slotName": "Out",
  527. "Descriptor": {
  528. "ConnectionType": 2,
  529. "SlotType": 1
  530. }
  531. },
  532. {
  533. "IsOverload": true,
  534. "id": {
  535. "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
  536. },
  537. "DynamicTypeOverride": 3,
  538. "contracts": [
  539. {
  540. "$type": "SlotTypeContract"
  541. }
  542. ],
  543. "slotName": "Number",
  544. "DisplayDataType": {
  545. "m_type": 3
  546. },
  547. "Descriptor": {
  548. "ConnectionType": 2,
  549. "SlotType": 2
  550. },
  551. "DataType": 1
  552. }
  553. ],
  554. "Datums": [
  555. {
  556. "isOverloadedStorage": false,
  557. "scriptCanvasType": {
  558. "m_type": 3
  559. },
  560. "isNullPointer": false,
  561. "$type": "double",
  562. "value": 0.0,
  563. "label": "Number: 0"
  564. },
  565. {
  566. "isOverloadedStorage": false,
  567. "scriptCanvasType": {
  568. "m_type": 3
  569. },
  570. "isNullPointer": false,
  571. "$type": "double",
  572. "value": 0.01,
  573. "label": "Number: 1"
  574. }
  575. ],
  576. "methodType": 2,
  577. "methodName": "Divide By Number (/)",
  578. "className": "Math",
  579. "resultSlotIDs": [
  580. {}
  581. ],
  582. "prettyClassName": "Math",
  583. "orderedInputSlotIds": [
  584. {
  585. "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
  586. },
  587. {
  588. "m_id": "{BCC6BF70-F4F7-4C9A-ADAE-FA5DB1355230}"
  589. }
  590. ],
  591. "outputSlotIds": [
  592. {
  593. "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
  594. }
  595. ]
  596. }
  597. }
  598. },
  599. {
  600. "Id": {
  601. "id": 1169061354756142
  602. },
  603. "Name": "SC-Node(Expect Equal)",
  604. "Components": {
  605. "Component_[1490894140412444154]": {
  606. "$type": "MethodOverloaded",
  607. "Id": 1490894140412444154,
  608. "Slots": [
  609. {
  610. "isVisibile": false,
  611. "id": {
  612. "m_id": "{76D373EF-0A76-4579-A6D0-FB8573F8F7E9}"
  613. },
  614. "contracts": [
  615. {
  616. "$type": "SlotTypeContract"
  617. },
  618. null
  619. ],
  620. "slotName": "EntityID: 0",
  621. "DisplayDataType": {
  622. "m_type": 1
  623. },
  624. "Descriptor": {
  625. "ConnectionType": 1,
  626. "SlotType": 2
  627. },
  628. "DataType": 1
  629. },
  630. {
  631. "IsOverload": true,
  632. "id": {
  633. "m_id": "{AF30559F-3209-4BD5-A457-4132E30FB4F1}"
  634. },
  635. "DynamicTypeOverride": 3,
  636. "contracts": [
  637. {
  638. "$type": "SlotTypeContract"
  639. },
  640. null
  641. ],
  642. "slotName": "Candidate",
  643. "toolTip": "left of ==",
  644. "DisplayDataType": {
  645. "m_type": 10
  646. },
  647. "Descriptor": {
  648. "ConnectionType": 1,
  649. "SlotType": 2
  650. },
  651. "DataType": 1
  652. },
  653. {
  654. "IsOverload": true,
  655. "id": {
  656. "m_id": "{0382EB13-13F8-4398-BC4F-39DDE62894AB}"
  657. },
  658. "DynamicTypeOverride": 3,
  659. "contracts": [
  660. {
  661. "$type": "SlotTypeContract"
  662. },
  663. null
  664. ],
  665. "slotName": "Reference",
  666. "toolTip": "right of ==",
  667. "DisplayDataType": {
  668. "m_type": 10
  669. },
  670. "Descriptor": {
  671. "ConnectionType": 1,
  672. "SlotType": 2
  673. },
  674. "DataType": 1,
  675. "IsReference": true,
  676. "VariableReference": {
  677. "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
  678. }
  679. },
  680. {
  681. "id": {
  682. "m_id": "{E279651B-C0D9-4393-B896-EC47D31ACD5F}"
  683. },
  684. "contracts": [
  685. {
  686. "$type": "SlotTypeContract"
  687. },
  688. null
  689. ],
  690. "slotName": "Report",
  691. "toolTip": "additional notes for the test report",
  692. "DisplayDataType": {
  693. "m_type": 5
  694. },
  695. "Descriptor": {
  696. "ConnectionType": 1,
  697. "SlotType": 2
  698. },
  699. "DataType": 1
  700. },
  701. {
  702. "id": {
  703. "m_id": "{52DE98D4-037C-490B-B959-900DB788C7E9}"
  704. },
  705. "contracts": [
  706. {
  707. "$type": "SlotTypeContract"
  708. }
  709. ],
  710. "slotName": "In",
  711. "Descriptor": {
  712. "ConnectionType": 1,
  713. "SlotType": 1
  714. }
  715. },
  716. {
  717. "id": {
  718. "m_id": "{C13DA8B4-3491-4DEB-BAFC-14936E601CD2}"
  719. },
  720. "contracts": [
  721. {
  722. "$type": "SlotTypeContract"
  723. }
  724. ],
  725. "slotName": "Out",
  726. "Descriptor": {
  727. "ConnectionType": 2,
  728. "SlotType": 1
  729. }
  730. }
  731. ],
  732. "Datums": [
  733. {
  734. "isOverloadedStorage": false,
  735. "scriptCanvasType": {
  736. "m_type": 1
  737. },
  738. "isNullPointer": false,
  739. "$type": "EntityId",
  740. "value": {
  741. "id": 4276206253
  742. }
  743. },
  744. {
  745. "isOverloadedStorage": false,
  746. "scriptCanvasType": {
  747. "m_type": 10
  748. },
  749. "isNullPointer": false,
  750. "$type": "Vector4",
  751. "value": [
  752. 0.0,
  753. 0.0,
  754. 0.0,
  755. 0.0
  756. ],
  757. "label": "Candidate"
  758. },
  759. {
  760. "isOverloadedStorage": false,
  761. "scriptCanvasType": {
  762. "m_type": 10
  763. },
  764. "isNullPointer": false,
  765. "$type": "Vector4",
  766. "value": [
  767. 0.0,
  768. 0.0,
  769. 0.0,
  770. 0.0
  771. ],
  772. "label": "Reference"
  773. },
  774. {
  775. "isOverloadedStorage": false,
  776. "scriptCanvasType": {
  777. "m_type": 5
  778. },
  779. "isNullPointer": false,
  780. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  781. "value": "",
  782. "label": "Report"
  783. }
  784. ],
  785. "methodType": 2,
  786. "methodName": "Expect Equal",
  787. "className": "Unit Testing",
  788. "resultSlotIDs": [
  789. {}
  790. ],
  791. "prettyClassName": "Unit Testing",
  792. "orderedInputSlotIds": [
  793. {
  794. "m_id": "{76D373EF-0A76-4579-A6D0-FB8573F8F7E9}"
  795. },
  796. {
  797. "m_id": "{AF30559F-3209-4BD5-A457-4132E30FB4F1}"
  798. },
  799. {
  800. "m_id": "{0382EB13-13F8-4398-BC4F-39DDE62894AB}"
  801. },
  802. {
  803. "m_id": "{E279651B-C0D9-4393-B896-EC47D31ACD5F}"
  804. }
  805. ],
  806. "outputSlotIds": [
  807. {}
  808. ]
  809. }
  810. }
  811. },
  812. {
  813. "Id": {
  814. "id": 1169048469854254
  815. },
  816. "Name": "SC Node(GetVariable)",
  817. "Components": {
  818. "Component_[16754804686485759764]": {
  819. "$type": "GetVariableNode",
  820. "Id": 16754804686485759764,
  821. "Slots": [
  822. {
  823. "id": {
  824. "m_id": "{1B2A3B1F-9292-4D32-8AFB-A28C9AC31151}"
  825. },
  826. "contracts": [
  827. {
  828. "$type": "SlotTypeContract"
  829. }
  830. ],
  831. "slotName": "In",
  832. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  833. "Descriptor": {
  834. "ConnectionType": 1,
  835. "SlotType": 1
  836. }
  837. },
  838. {
  839. "id": {
  840. "m_id": "{18E88B9C-2D4D-40FD-87D6-551AD23E294E}"
  841. },
  842. "contracts": [
  843. {
  844. "$type": "SlotTypeContract"
  845. }
  846. ],
  847. "slotName": "Out",
  848. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  849. "Descriptor": {
  850. "ConnectionType": 2,
  851. "SlotType": 1
  852. }
  853. },
  854. {
  855. "id": {
  856. "m_id": "{09688E45-0216-45D7-8E03-3F5D44344E0D}"
  857. },
  858. "contracts": [
  859. {
  860. "$type": "SlotTypeContract"
  861. }
  862. ],
  863. "slotName": "Vector4",
  864. "DisplayDataType": {
  865. "m_type": 10
  866. },
  867. "Descriptor": {
  868. "ConnectionType": 2,
  869. "SlotType": 2
  870. },
  871. "DataType": 1
  872. },
  873. {
  874. "id": {
  875. "m_id": "{448BF3E9-D4BA-4524-8C71-5E6AF01DFCDD}"
  876. },
  877. "contracts": [
  878. {
  879. "$type": "SlotTypeContract"
  880. }
  881. ],
  882. "slotName": "x: Number",
  883. "DisplayDataType": {
  884. "m_type": 3
  885. },
  886. "Descriptor": {
  887. "ConnectionType": 2,
  888. "SlotType": 2
  889. },
  890. "DataType": 1
  891. },
  892. {
  893. "id": {
  894. "m_id": "{1FCD74F8-A545-41D9-A263-91E6B1C89F6C}"
  895. },
  896. "contracts": [
  897. {
  898. "$type": "SlotTypeContract"
  899. }
  900. ],
  901. "slotName": "y: Number",
  902. "DisplayDataType": {
  903. "m_type": 3
  904. },
  905. "Descriptor": {
  906. "ConnectionType": 2,
  907. "SlotType": 2
  908. },
  909. "DataType": 1
  910. },
  911. {
  912. "id": {
  913. "m_id": "{77432C0C-AAEE-42BD-BE4E-229DED9A60A2}"
  914. },
  915. "contracts": [
  916. {
  917. "$type": "SlotTypeContract"
  918. }
  919. ],
  920. "slotName": "z: Number",
  921. "DisplayDataType": {
  922. "m_type": 3
  923. },
  924. "Descriptor": {
  925. "ConnectionType": 2,
  926. "SlotType": 2
  927. },
  928. "DataType": 1
  929. },
  930. {
  931. "id": {
  932. "m_id": "{8179C018-54A3-4964-AA04-D0F743D22EB8}"
  933. },
  934. "contracts": [
  935. {
  936. "$type": "SlotTypeContract"
  937. }
  938. ],
  939. "slotName": "w: Number",
  940. "DisplayDataType": {
  941. "m_type": 3
  942. },
  943. "Descriptor": {
  944. "ConnectionType": 2,
  945. "SlotType": 2
  946. },
  947. "DataType": 1
  948. }
  949. ],
  950. "m_variableId": {
  951. "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
  952. },
  953. "m_variableDataOutSlotId": {
  954. "m_id": "{09688E45-0216-45D7-8E03-3F5D44344E0D}"
  955. },
  956. "m_propertyAccounts": [
  957. {
  958. "m_propertySlotId": {
  959. "m_id": "{448BF3E9-D4BA-4524-8C71-5E6AF01DFCDD}"
  960. },
  961. "m_propertyType": {
  962. "m_type": 3
  963. },
  964. "m_propertyName": "x"
  965. },
  966. {
  967. "m_propertySlotId": {
  968. "m_id": "{1FCD74F8-A545-41D9-A263-91E6B1C89F6C}"
  969. },
  970. "m_propertyType": {
  971. "m_type": 3
  972. },
  973. "m_propertyName": "y"
  974. },
  975. {
  976. "m_propertySlotId": {
  977. "m_id": "{77432C0C-AAEE-42BD-BE4E-229DED9A60A2}"
  978. },
  979. "m_propertyType": {
  980. "m_type": 3
  981. },
  982. "m_propertyName": "z"
  983. },
  984. {
  985. "m_propertySlotId": {
  986. "m_id": "{8179C018-54A3-4964-AA04-D0F743D22EB8}"
  987. },
  988. "m_propertyType": {
  989. "m_type": 3
  990. },
  991. "m_propertyName": "w"
  992. }
  993. ]
  994. }
  995. }
  996. },
  997. {
  998. "Id": {
  999. "id": 1169087124559918
  1000. },
  1001. "Name": "SC Node(GetVariable)",
  1002. "Components": {
  1003. "Component_[16935059990045792580]": {
  1004. "$type": "GetVariableNode",
  1005. "Id": 16935059990045792580,
  1006. "Slots": [
  1007. {
  1008. "id": {
  1009. "m_id": "{C3F3775A-0B31-4C10-9367-4C66A1C3B7BE}"
  1010. },
  1011. "contracts": [
  1012. {
  1013. "$type": "SlotTypeContract"
  1014. }
  1015. ],
  1016. "slotName": "In",
  1017. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1018. "Descriptor": {
  1019. "ConnectionType": 1,
  1020. "SlotType": 1
  1021. }
  1022. },
  1023. {
  1024. "id": {
  1025. "m_id": "{191BB719-31E2-46A3-8270-95BAA15CB14B}"
  1026. },
  1027. "contracts": [
  1028. {
  1029. "$type": "SlotTypeContract"
  1030. }
  1031. ],
  1032. "slotName": "Out",
  1033. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1034. "Descriptor": {
  1035. "ConnectionType": 2,
  1036. "SlotType": 1
  1037. }
  1038. },
  1039. {
  1040. "id": {
  1041. "m_id": "{18990D1E-AB17-44BB-8D0A-CB6B66634A75}"
  1042. },
  1043. "contracts": [
  1044. {
  1045. "$type": "SlotTypeContract"
  1046. }
  1047. ],
  1048. "slotName": "Vector2",
  1049. "DisplayDataType": {
  1050. "m_type": 9
  1051. },
  1052. "Descriptor": {
  1053. "ConnectionType": 2,
  1054. "SlotType": 2
  1055. },
  1056. "DataType": 1
  1057. },
  1058. {
  1059. "id": {
  1060. "m_id": "{33B6AB8A-38BC-456A-96B0-3D72C139C1A3}"
  1061. },
  1062. "contracts": [
  1063. {
  1064. "$type": "SlotTypeContract"
  1065. }
  1066. ],
  1067. "slotName": "x: Number",
  1068. "DisplayDataType": {
  1069. "m_type": 3
  1070. },
  1071. "Descriptor": {
  1072. "ConnectionType": 2,
  1073. "SlotType": 2
  1074. },
  1075. "DataType": 1
  1076. },
  1077. {
  1078. "id": {
  1079. "m_id": "{C3AD2172-9499-4FCF-B96B-25F4D241B640}"
  1080. },
  1081. "contracts": [
  1082. {
  1083. "$type": "SlotTypeContract"
  1084. }
  1085. ],
  1086. "slotName": "y: Number",
  1087. "DisplayDataType": {
  1088. "m_type": 3
  1089. },
  1090. "Descriptor": {
  1091. "ConnectionType": 2,
  1092. "SlotType": 2
  1093. },
  1094. "DataType": 1
  1095. }
  1096. ],
  1097. "m_variableId": {
  1098. "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
  1099. },
  1100. "m_variableDataOutSlotId": {
  1101. "m_id": "{18990D1E-AB17-44BB-8D0A-CB6B66634A75}"
  1102. },
  1103. "m_propertyAccounts": [
  1104. {
  1105. "m_propertySlotId": {
  1106. "m_id": "{33B6AB8A-38BC-456A-96B0-3D72C139C1A3}"
  1107. },
  1108. "m_propertyType": {
  1109. "m_type": 3
  1110. },
  1111. "m_propertyName": "x"
  1112. },
  1113. {
  1114. "m_propertySlotId": {
  1115. "m_id": "{C3AD2172-9499-4FCF-B96B-25F4D241B640}"
  1116. },
  1117. "m_propertyType": {
  1118. "m_type": 3
  1119. },
  1120. "m_propertyName": "y"
  1121. }
  1122. ]
  1123. }
  1124. }
  1125. },
  1126. {
  1127. "Id": {
  1128. "id": 1169074239658030
  1129. },
  1130. "Name": "SC-Node(Expect Equal)",
  1131. "Components": {
  1132. "Component_[17040071503292863986]": {
  1133. "$type": "MethodOverloaded",
  1134. "Id": 17040071503292863986,
  1135. "Slots": [
  1136. {
  1137. "isVisibile": false,
  1138. "id": {
  1139. "m_id": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
  1140. },
  1141. "contracts": [
  1142. {
  1143. "$type": "SlotTypeContract"
  1144. },
  1145. null
  1146. ],
  1147. "slotName": "EntityID: 0",
  1148. "DisplayDataType": {
  1149. "m_type": 1
  1150. },
  1151. "Descriptor": {
  1152. "ConnectionType": 1,
  1153. "SlotType": 2
  1154. },
  1155. "DataType": 1
  1156. },
  1157. {
  1158. "IsOverload": true,
  1159. "id": {
  1160. "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
  1161. },
  1162. "DynamicTypeOverride": 3,
  1163. "contracts": [
  1164. {
  1165. "$type": "SlotTypeContract"
  1166. },
  1167. null
  1168. ],
  1169. "slotName": "Candidate",
  1170. "toolTip": "left of ==",
  1171. "DisplayDataType": {
  1172. "m_type": 9
  1173. },
  1174. "Descriptor": {
  1175. "ConnectionType": 1,
  1176. "SlotType": 2
  1177. },
  1178. "DataType": 1
  1179. },
  1180. {
  1181. "IsOverload": true,
  1182. "id": {
  1183. "m_id": "{96809CCD-C768-4933-92BE-BA45821D012F}"
  1184. },
  1185. "DynamicTypeOverride": 3,
  1186. "contracts": [
  1187. {
  1188. "$type": "SlotTypeContract"
  1189. },
  1190. null
  1191. ],
  1192. "slotName": "Reference",
  1193. "toolTip": "right of ==",
  1194. "DisplayDataType": {
  1195. "m_type": 9
  1196. },
  1197. "Descriptor": {
  1198. "ConnectionType": 1,
  1199. "SlotType": 2
  1200. },
  1201. "DataType": 1,
  1202. "IsReference": true,
  1203. "VariableReference": {
  1204. "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
  1205. }
  1206. },
  1207. {
  1208. "id": {
  1209. "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
  1210. },
  1211. "contracts": [
  1212. {
  1213. "$type": "SlotTypeContract"
  1214. },
  1215. null
  1216. ],
  1217. "slotName": "Report",
  1218. "toolTip": "additional notes for the test report",
  1219. "DisplayDataType": {
  1220. "m_type": 5
  1221. },
  1222. "Descriptor": {
  1223. "ConnectionType": 1,
  1224. "SlotType": 2
  1225. },
  1226. "DataType": 1
  1227. },
  1228. {
  1229. "id": {
  1230. "m_id": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
  1231. },
  1232. "contracts": [
  1233. {
  1234. "$type": "SlotTypeContract"
  1235. }
  1236. ],
  1237. "slotName": "In",
  1238. "Descriptor": {
  1239. "ConnectionType": 1,
  1240. "SlotType": 1
  1241. }
  1242. },
  1243. {
  1244. "id": {
  1245. "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
  1246. },
  1247. "contracts": [
  1248. {
  1249. "$type": "SlotTypeContract"
  1250. }
  1251. ],
  1252. "slotName": "Out",
  1253. "Descriptor": {
  1254. "ConnectionType": 2,
  1255. "SlotType": 1
  1256. }
  1257. }
  1258. ],
  1259. "Datums": [
  1260. {
  1261. "isOverloadedStorage": false,
  1262. "scriptCanvasType": {
  1263. "m_type": 1
  1264. },
  1265. "isNullPointer": false,
  1266. "$type": "EntityId",
  1267. "value": {
  1268. "id": 4276206253
  1269. }
  1270. },
  1271. {
  1272. "isOverloadedStorage": false,
  1273. "scriptCanvasType": {
  1274. "m_type": 9
  1275. },
  1276. "isNullPointer": false,
  1277. "$type": "Vector2",
  1278. "value": [
  1279. 0.0,
  1280. 0.0
  1281. ],
  1282. "label": "Candidate"
  1283. },
  1284. {
  1285. "isOverloadedStorage": false,
  1286. "scriptCanvasType": {
  1287. "m_type": 9
  1288. },
  1289. "isNullPointer": false,
  1290. "$type": "Vector2",
  1291. "value": [
  1292. 0.0,
  1293. 0.0
  1294. ],
  1295. "label": "Reference"
  1296. },
  1297. {
  1298. "isOverloadedStorage": false,
  1299. "scriptCanvasType": {
  1300. "m_type": 5
  1301. },
  1302. "isNullPointer": false,
  1303. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1304. "value": "",
  1305. "label": "Report"
  1306. }
  1307. ],
  1308. "methodType": 2,
  1309. "methodName": "Expect Equal",
  1310. "className": "Unit Testing",
  1311. "resultSlotIDs": [
  1312. {}
  1313. ],
  1314. "prettyClassName": "Unit Testing",
  1315. "orderedInputSlotIds": [
  1316. {
  1317. "m_id": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
  1318. },
  1319. {
  1320. "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
  1321. },
  1322. {
  1323. "m_id": "{96809CCD-C768-4933-92BE-BA45821D012F}"
  1324. },
  1325. {
  1326. "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
  1327. }
  1328. ],
  1329. "outputSlotIds": [
  1330. {}
  1331. ]
  1332. }
  1333. }
  1334. },
  1335. {
  1336. "Id": {
  1337. "id": 1169065649723438
  1338. },
  1339. "Name": "SC-Node(Expect Equal)",
  1340. "Components": {
  1341. "Component_[17040071503292863986]": {
  1342. "$type": "MethodOverloaded",
  1343. "Id": 17040071503292863986,
  1344. "Slots": [
  1345. {
  1346. "isVisibile": false,
  1347. "id": {
  1348. "m_id": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
  1349. },
  1350. "contracts": [
  1351. {
  1352. "$type": "SlotTypeContract"
  1353. },
  1354. null
  1355. ],
  1356. "slotName": "EntityID: 0",
  1357. "DisplayDataType": {
  1358. "m_type": 1
  1359. },
  1360. "Descriptor": {
  1361. "ConnectionType": 1,
  1362. "SlotType": 2
  1363. },
  1364. "DataType": 1
  1365. },
  1366. {
  1367. "IsOverload": true,
  1368. "id": {
  1369. "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
  1370. },
  1371. "DynamicTypeOverride": 3,
  1372. "contracts": [
  1373. {
  1374. "$type": "SlotTypeContract"
  1375. },
  1376. null
  1377. ],
  1378. "slotName": "Candidate",
  1379. "toolTip": "left of ==",
  1380. "DisplayDataType": {
  1381. "m_type": 3
  1382. },
  1383. "Descriptor": {
  1384. "ConnectionType": 1,
  1385. "SlotType": 2
  1386. },
  1387. "DataType": 1
  1388. },
  1389. {
  1390. "IsOverload": true,
  1391. "id": {
  1392. "m_id": "{96809CCD-C768-4933-92BE-BA45821D012F}"
  1393. },
  1394. "DynamicTypeOverride": 3,
  1395. "contracts": [
  1396. {
  1397. "$type": "SlotTypeContract"
  1398. },
  1399. null
  1400. ],
  1401. "slotName": "Reference",
  1402. "toolTip": "right of ==",
  1403. "DisplayDataType": {
  1404. "m_type": 3
  1405. },
  1406. "Descriptor": {
  1407. "ConnectionType": 1,
  1408. "SlotType": 2
  1409. },
  1410. "DataType": 1,
  1411. "IsReference": true,
  1412. "VariableReference": {
  1413. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  1414. }
  1415. },
  1416. {
  1417. "id": {
  1418. "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
  1419. },
  1420. "contracts": [
  1421. {
  1422. "$type": "SlotTypeContract"
  1423. },
  1424. null
  1425. ],
  1426. "slotName": "Report",
  1427. "toolTip": "additional notes for the test report",
  1428. "DisplayDataType": {
  1429. "m_type": 5
  1430. },
  1431. "Descriptor": {
  1432. "ConnectionType": 1,
  1433. "SlotType": 2
  1434. },
  1435. "DataType": 1
  1436. },
  1437. {
  1438. "id": {
  1439. "m_id": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
  1440. },
  1441. "contracts": [
  1442. {
  1443. "$type": "SlotTypeContract"
  1444. }
  1445. ],
  1446. "slotName": "In",
  1447. "Descriptor": {
  1448. "ConnectionType": 1,
  1449. "SlotType": 1
  1450. }
  1451. },
  1452. {
  1453. "id": {
  1454. "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
  1455. },
  1456. "contracts": [
  1457. {
  1458. "$type": "SlotTypeContract"
  1459. }
  1460. ],
  1461. "slotName": "Out",
  1462. "Descriptor": {
  1463. "ConnectionType": 2,
  1464. "SlotType": 1
  1465. }
  1466. }
  1467. ],
  1468. "Datums": [
  1469. {
  1470. "isOverloadedStorage": false,
  1471. "scriptCanvasType": {
  1472. "m_type": 1
  1473. },
  1474. "isNullPointer": false,
  1475. "$type": "EntityId",
  1476. "value": {
  1477. "id": 4276206253
  1478. }
  1479. },
  1480. {
  1481. "isOverloadedStorage": false,
  1482. "scriptCanvasType": {
  1483. "m_type": 3
  1484. },
  1485. "isNullPointer": false,
  1486. "$type": "double",
  1487. "value": 0.0,
  1488. "label": "Candidate"
  1489. },
  1490. {
  1491. "isOverloadedStorage": false,
  1492. "scriptCanvasType": {
  1493. "m_type": 3
  1494. },
  1495. "isNullPointer": false,
  1496. "$type": "double",
  1497. "value": 0.0,
  1498. "label": "Reference"
  1499. },
  1500. {
  1501. "isOverloadedStorage": false,
  1502. "scriptCanvasType": {
  1503. "m_type": 5
  1504. },
  1505. "isNullPointer": false,
  1506. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1507. "value": "",
  1508. "label": "Report"
  1509. }
  1510. ],
  1511. "methodType": 2,
  1512. "methodName": "Expect Equal",
  1513. "className": "Unit Testing",
  1514. "resultSlotIDs": [
  1515. {}
  1516. ],
  1517. "prettyClassName": "Unit Testing",
  1518. "orderedInputSlotIds": [
  1519. {
  1520. "m_id": "{28BD5E64-7DAE-4E87-8911-8A29F2770ED7}"
  1521. },
  1522. {
  1523. "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
  1524. },
  1525. {
  1526. "m_id": "{96809CCD-C768-4933-92BE-BA45821D012F}"
  1527. },
  1528. {
  1529. "m_id": "{F507CD0E-2131-48D7-A7FF-B928F54BCDB0}"
  1530. }
  1531. ],
  1532. "outputSlotIds": [
  1533. {}
  1534. ]
  1535. }
  1536. }
  1537. },
  1538. {
  1539. "Id": {
  1540. "id": 1169039879919662
  1541. },
  1542. "Name": "SC-Node(Expect Equal)",
  1543. "Components": {
  1544. "Component_[17965280411195307946]": {
  1545. "$type": "MethodOverloaded",
  1546. "Id": 17965280411195307946,
  1547. "Slots": [
  1548. {
  1549. "isVisibile": false,
  1550. "id": {
  1551. "m_id": "{2E1685F4-491D-473A-A470-D7B2EFD4145F}"
  1552. },
  1553. "contracts": [
  1554. {
  1555. "$type": "SlotTypeContract"
  1556. },
  1557. null
  1558. ],
  1559. "slotName": "EntityID: 0",
  1560. "DisplayDataType": {
  1561. "m_type": 1
  1562. },
  1563. "Descriptor": {
  1564. "ConnectionType": 1,
  1565. "SlotType": 2
  1566. },
  1567. "DataType": 1
  1568. },
  1569. {
  1570. "IsOverload": true,
  1571. "id": {
  1572. "m_id": "{898F676B-D784-4101-9700-4BEEC8F11548}"
  1573. },
  1574. "DynamicTypeOverride": 3,
  1575. "contracts": [
  1576. {
  1577. "$type": "SlotTypeContract"
  1578. },
  1579. null
  1580. ],
  1581. "slotName": "Candidate",
  1582. "toolTip": "left of ==",
  1583. "DisplayDataType": {
  1584. "m_type": 8
  1585. },
  1586. "Descriptor": {
  1587. "ConnectionType": 1,
  1588. "SlotType": 2
  1589. },
  1590. "DataType": 1
  1591. },
  1592. {
  1593. "IsOverload": true,
  1594. "id": {
  1595. "m_id": "{8F6D74E7-558B-4545-B7B8-4D475B231E06}"
  1596. },
  1597. "DynamicTypeOverride": 3,
  1598. "contracts": [
  1599. {
  1600. "$type": "SlotTypeContract"
  1601. },
  1602. null
  1603. ],
  1604. "slotName": "Reference",
  1605. "toolTip": "right of ==",
  1606. "DisplayDataType": {
  1607. "m_type": 8
  1608. },
  1609. "Descriptor": {
  1610. "ConnectionType": 1,
  1611. "SlotType": 2
  1612. },
  1613. "DataType": 1,
  1614. "IsReference": true,
  1615. "VariableReference": {
  1616. "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
  1617. }
  1618. },
  1619. {
  1620. "id": {
  1621. "m_id": "{4BF0D1BA-8D3E-4AA4-BE81-5E508ADB83B7}"
  1622. },
  1623. "contracts": [
  1624. {
  1625. "$type": "SlotTypeContract"
  1626. },
  1627. null
  1628. ],
  1629. "slotName": "Report",
  1630. "toolTip": "additional notes for the test report",
  1631. "DisplayDataType": {
  1632. "m_type": 5
  1633. },
  1634. "Descriptor": {
  1635. "ConnectionType": 1,
  1636. "SlotType": 2
  1637. },
  1638. "DataType": 1
  1639. },
  1640. {
  1641. "id": {
  1642. "m_id": "{2A40F71F-91B0-46D6-ADFA-21DBA87BFCCD}"
  1643. },
  1644. "contracts": [
  1645. {
  1646. "$type": "SlotTypeContract"
  1647. }
  1648. ],
  1649. "slotName": "In",
  1650. "Descriptor": {
  1651. "ConnectionType": 1,
  1652. "SlotType": 1
  1653. }
  1654. },
  1655. {
  1656. "id": {
  1657. "m_id": "{8C4FD72A-329B-4C30-AB16-9D96C10C0B3F}"
  1658. },
  1659. "contracts": [
  1660. {
  1661. "$type": "SlotTypeContract"
  1662. }
  1663. ],
  1664. "slotName": "Out",
  1665. "Descriptor": {
  1666. "ConnectionType": 2,
  1667. "SlotType": 1
  1668. }
  1669. }
  1670. ],
  1671. "Datums": [
  1672. {
  1673. "isOverloadedStorage": false,
  1674. "scriptCanvasType": {
  1675. "m_type": 1
  1676. },
  1677. "isNullPointer": false,
  1678. "$type": "EntityId",
  1679. "value": {
  1680. "id": 4276206253
  1681. }
  1682. },
  1683. {
  1684. "isOverloadedStorage": false,
  1685. "scriptCanvasType": {
  1686. "m_type": 8
  1687. },
  1688. "isNullPointer": false,
  1689. "$type": "Vector3",
  1690. "value": [
  1691. 0.0,
  1692. 0.0,
  1693. 0.0
  1694. ],
  1695. "label": "Candidate"
  1696. },
  1697. {
  1698. "isOverloadedStorage": false,
  1699. "scriptCanvasType": {
  1700. "m_type": 8
  1701. },
  1702. "isNullPointer": false,
  1703. "$type": "Vector3",
  1704. "value": [
  1705. 0.0,
  1706. 0.0,
  1707. 0.0
  1708. ],
  1709. "label": "Reference"
  1710. },
  1711. {
  1712. "isOverloadedStorage": false,
  1713. "scriptCanvasType": {
  1714. "m_type": 5
  1715. },
  1716. "isNullPointer": false,
  1717. "$type": "{03AAAB3F-5C47-5A66-9EBC-D5FA4DB353C9} AZStd::string",
  1718. "value": "",
  1719. "label": "Report"
  1720. }
  1721. ],
  1722. "methodType": 2,
  1723. "methodName": "Expect Equal",
  1724. "className": "Unit Testing",
  1725. "resultSlotIDs": [
  1726. {}
  1727. ],
  1728. "prettyClassName": "Unit Testing",
  1729. "orderedInputSlotIds": [
  1730. {
  1731. "m_id": "{2E1685F4-491D-473A-A470-D7B2EFD4145F}"
  1732. },
  1733. {
  1734. "m_id": "{898F676B-D784-4101-9700-4BEEC8F11548}"
  1735. },
  1736. {
  1737. "m_id": "{8F6D74E7-558B-4545-B7B8-4D475B231E06}"
  1738. },
  1739. {
  1740. "m_id": "{4BF0D1BA-8D3E-4AA4-BE81-5E508ADB83B7}"
  1741. }
  1742. ],
  1743. "outputSlotIds": [
  1744. {}
  1745. ]
  1746. }
  1747. }
  1748. },
  1749. {
  1750. "Id": {
  1751. "id": 1169069944690734
  1752. },
  1753. "Name": "SC-Node(Start)",
  1754. "Components": {
  1755. "Component_[4790154995165356826]": {
  1756. "$type": "Start",
  1757. "Id": 4790154995165356826,
  1758. "Slots": [
  1759. {
  1760. "id": {
  1761. "m_id": "{222D0EB8-64B4-4A2B-991D-92BF25DFF671}"
  1762. },
  1763. "contracts": [
  1764. {
  1765. "$type": "SlotTypeContract"
  1766. }
  1767. ],
  1768. "slotName": "Out",
  1769. "toolTip": "Signaled when the entity that owns this graph is fully activated.",
  1770. "Descriptor": {
  1771. "ConnectionType": 2,
  1772. "SlotType": 1
  1773. }
  1774. }
  1775. ]
  1776. }
  1777. }
  1778. },
  1779. {
  1780. "Id": {
  1781. "id": 1169078534625326
  1782. },
  1783. "Name": "SC-Node(Divide By Number (/))",
  1784. "Components": {
  1785. "Component_[4985350965455260812]": {
  1786. "$type": "MethodOverloaded",
  1787. "Id": 4985350965455260812,
  1788. "Slots": [
  1789. {
  1790. "IsOverload": true,
  1791. "id": {
  1792. "m_id": "{8E5A9F36-BA66-4037-8E09-75C99C89BA13}"
  1793. },
  1794. "DynamicTypeOverride": 3,
  1795. "contracts": [
  1796. {
  1797. "$type": "SlotTypeContract"
  1798. },
  1799. null
  1800. ],
  1801. "slotName": "Vector4: 0",
  1802. "DisplayDataType": {
  1803. "m_type": 10
  1804. },
  1805. "Descriptor": {
  1806. "ConnectionType": 1,
  1807. "SlotType": 2
  1808. },
  1809. "DataType": 1
  1810. },
  1811. {
  1812. "IsOverload": true,
  1813. "id": {
  1814. "m_id": "{F0E239B8-C1C5-41FE-B07A-487AE76D6114}"
  1815. },
  1816. "DynamicTypeOverride": 3,
  1817. "contracts": [
  1818. {
  1819. "$type": "SlotTypeContract"
  1820. },
  1821. null
  1822. ],
  1823. "slotName": "Number: 1",
  1824. "DisplayDataType": {
  1825. "m_type": 3
  1826. },
  1827. "Descriptor": {
  1828. "ConnectionType": 1,
  1829. "SlotType": 2
  1830. },
  1831. "DataType": 1,
  1832. "IsReference": true,
  1833. "VariableReference": {
  1834. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  1835. }
  1836. },
  1837. {
  1838. "id": {
  1839. "m_id": "{9FE4C555-D932-4A18-838B-4B9CBC5BB935}"
  1840. },
  1841. "contracts": [
  1842. {
  1843. "$type": "SlotTypeContract"
  1844. }
  1845. ],
  1846. "slotName": "In",
  1847. "Descriptor": {
  1848. "ConnectionType": 1,
  1849. "SlotType": 1
  1850. }
  1851. },
  1852. {
  1853. "id": {
  1854. "m_id": "{6DC8B9D0-B06E-4989-8EFC-A43D6302A667}"
  1855. },
  1856. "contracts": [
  1857. {
  1858. "$type": "SlotTypeContract"
  1859. }
  1860. ],
  1861. "slotName": "Out",
  1862. "Descriptor": {
  1863. "ConnectionType": 2,
  1864. "SlotType": 1
  1865. }
  1866. },
  1867. {
  1868. "IsOverload": true,
  1869. "id": {
  1870. "m_id": "{0A995095-6F8B-4913-978F-14E832EB1710}"
  1871. },
  1872. "DynamicTypeOverride": 3,
  1873. "contracts": [
  1874. {
  1875. "$type": "SlotTypeContract"
  1876. }
  1877. ],
  1878. "slotName": "Vector4",
  1879. "DisplayDataType": {
  1880. "m_type": 10
  1881. },
  1882. "Descriptor": {
  1883. "ConnectionType": 2,
  1884. "SlotType": 2
  1885. },
  1886. "DataType": 1
  1887. }
  1888. ],
  1889. "Datums": [
  1890. {
  1891. "isOverloadedStorage": false,
  1892. "scriptCanvasType": {
  1893. "m_type": 10
  1894. },
  1895. "isNullPointer": false,
  1896. "$type": "Vector4",
  1897. "value": [
  1898. 0.0,
  1899. 0.0,
  1900. 0.0,
  1901. 0.0
  1902. ],
  1903. "label": "Vector4: 0"
  1904. },
  1905. {
  1906. "isOverloadedStorage": false,
  1907. "scriptCanvasType": {
  1908. "m_type": 3
  1909. },
  1910. "isNullPointer": false,
  1911. "$type": "double",
  1912. "value": 0.0,
  1913. "label": "Number: 1"
  1914. }
  1915. ],
  1916. "methodType": 2,
  1917. "methodName": "Divide By Number (/)",
  1918. "className": "Vector4",
  1919. "resultSlotIDs": [
  1920. {}
  1921. ],
  1922. "prettyClassName": "Vector4",
  1923. "orderedInputSlotIds": [
  1924. {
  1925. "m_id": "{8E5A9F36-BA66-4037-8E09-75C99C89BA13}"
  1926. },
  1927. {
  1928. "m_id": "{F0E239B8-C1C5-41FE-B07A-487AE76D6114}"
  1929. }
  1930. ],
  1931. "outputSlotIds": [
  1932. {
  1933. "m_id": "{0A995095-6F8B-4913-978F-14E832EB1710}"
  1934. }
  1935. ]
  1936. }
  1937. }
  1938. },
  1939. {
  1940. "Id": {
  1941. "id": 1169082829592622
  1942. },
  1943. "Name": "SC Node(GetVariable)",
  1944. "Components": {
  1945. "Component_[521107714587120060]": {
  1946. "$type": "GetVariableNode",
  1947. "Id": 521107714587120060,
  1948. "Slots": [
  1949. {
  1950. "id": {
  1951. "m_id": "{7C0BF99C-3CD3-4D52-B484-606052B3BF3F}"
  1952. },
  1953. "contracts": [
  1954. {
  1955. "$type": "SlotTypeContract"
  1956. }
  1957. ],
  1958. "slotName": "In",
  1959. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  1960. "Descriptor": {
  1961. "ConnectionType": 1,
  1962. "SlotType": 1
  1963. }
  1964. },
  1965. {
  1966. "id": {
  1967. "m_id": "{BD25B5F1-E9A6-4F1C-8A9D-FD097799541A}"
  1968. },
  1969. "contracts": [
  1970. {
  1971. "$type": "SlotTypeContract"
  1972. }
  1973. ],
  1974. "slotName": "Out",
  1975. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  1976. "Descriptor": {
  1977. "ConnectionType": 2,
  1978. "SlotType": 1
  1979. }
  1980. },
  1981. {
  1982. "id": {
  1983. "m_id": "{EE59432E-B300-4E76-869A-21BCECE000D8}"
  1984. },
  1985. "contracts": [
  1986. {
  1987. "$type": "SlotTypeContract"
  1988. }
  1989. ],
  1990. "slotName": "Number",
  1991. "DisplayDataType": {
  1992. "m_type": 3
  1993. },
  1994. "Descriptor": {
  1995. "ConnectionType": 2,
  1996. "SlotType": 2
  1997. },
  1998. "DataType": 1
  1999. }
  2000. ],
  2001. "m_variableId": {
  2002. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  2003. },
  2004. "m_variableDataOutSlotId": {
  2005. "m_id": "{EE59432E-B300-4E76-869A-21BCECE000D8}"
  2006. }
  2007. }
  2008. }
  2009. },
  2010. {
  2011. "Id": {
  2012. "id": 1169031289985070
  2013. },
  2014. "Name": "SC Node(GetVariable)",
  2015. "Components": {
  2016. "Component_[7294931856491902197]": {
  2017. "$type": "GetVariableNode",
  2018. "Id": 7294931856491902197,
  2019. "Slots": [
  2020. {
  2021. "id": {
  2022. "m_id": "{9E2C9AB5-8D10-4449-82C9-55EA7F8B3A58}"
  2023. },
  2024. "contracts": [
  2025. {
  2026. "$type": "SlotTypeContract"
  2027. }
  2028. ],
  2029. "slotName": "In",
  2030. "toolTip": "When signaled sends the property referenced by this node to a Data Output slot",
  2031. "Descriptor": {
  2032. "ConnectionType": 1,
  2033. "SlotType": 1
  2034. }
  2035. },
  2036. {
  2037. "id": {
  2038. "m_id": "{9601B468-EBBE-4B6D-98C0-DE5FF6B35C36}"
  2039. },
  2040. "contracts": [
  2041. {
  2042. "$type": "SlotTypeContract"
  2043. }
  2044. ],
  2045. "slotName": "Out",
  2046. "toolTip": "Signaled after the referenced property has been pushed to the Data Output slot",
  2047. "Descriptor": {
  2048. "ConnectionType": 2,
  2049. "SlotType": 1
  2050. }
  2051. },
  2052. {
  2053. "id": {
  2054. "m_id": "{FA2427C2-6652-4B30-B29F-7FBF4B51B676}"
  2055. },
  2056. "contracts": [
  2057. {
  2058. "$type": "SlotTypeContract"
  2059. }
  2060. ],
  2061. "slotName": "Number",
  2062. "DisplayDataType": {
  2063. "m_type": 3
  2064. },
  2065. "Descriptor": {
  2066. "ConnectionType": 2,
  2067. "SlotType": 2
  2068. },
  2069. "DataType": 1
  2070. }
  2071. ],
  2072. "m_variableId": {
  2073. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  2074. },
  2075. "m_variableDataOutSlotId": {
  2076. "m_id": "{FA2427C2-6652-4B30-B29F-7FBF4B51B676}"
  2077. }
  2078. }
  2079. }
  2080. }
  2081. ],
  2082. "m_connections": [
  2083. {
  2084. "Id": {
  2085. "id": 1169091419527214
  2086. },
  2087. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Divide By Number (/): Number: 1)",
  2088. "Components": {
  2089. "Component_[11746576670105138649]": {
  2090. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2091. "Id": 11746576670105138649,
  2092. "sourceEndpoint": {
  2093. "nodeId": {
  2094. "id": 1169031289985070
  2095. },
  2096. "slotId": {
  2097. "m_id": "{FA2427C2-6652-4B30-B29F-7FBF4B51B676}"
  2098. }
  2099. },
  2100. "targetEndpoint": {
  2101. "nodeId": {
  2102. "id": 1169057059788846
  2103. },
  2104. "slotId": {
  2105. "m_id": "{C9F52DDB-6769-4BBC-8E42-7389F46E5381}"
  2106. }
  2107. }
  2108. }
  2109. }
  2110. },
  2111. {
  2112. "Id": {
  2113. "id": 1169095714494510
  2114. },
  2115. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
  2116. "Components": {
  2117. "Component_[10514845345642834251]": {
  2118. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2119. "Id": 10514845345642834251,
  2120. "sourceEndpoint": {
  2121. "nodeId": {
  2122. "id": 1169031289985070
  2123. },
  2124. "slotId": {
  2125. "m_id": "{9601B468-EBBE-4B6D-98C0-DE5FF6B35C36}"
  2126. }
  2127. },
  2128. "targetEndpoint": {
  2129. "nodeId": {
  2130. "id": 1169057059788846
  2131. },
  2132. "slotId": {
  2133. "m_id": "{843925B3-3829-4145-9400-0282F671EF95}"
  2134. }
  2135. }
  2136. }
  2137. }
  2138. },
  2139. {
  2140. "Id": {
  2141. "id": 1169100009461806
  2142. },
  2143. "Name": "srcEndpoint=(On Graph Start: Out), destEndpoint=(Get Variable: In)",
  2144. "Components": {
  2145. "Component_[1405238155265179133]": {
  2146. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2147. "Id": 1405238155265179133,
  2148. "sourceEndpoint": {
  2149. "nodeId": {
  2150. "id": 1169069944690734
  2151. },
  2152. "slotId": {
  2153. "m_id": "{222D0EB8-64B4-4A2B-991D-92BF25DFF671}"
  2154. }
  2155. },
  2156. "targetEndpoint": {
  2157. "nodeId": {
  2158. "id": 1169031289985070
  2159. },
  2160. "slotId": {
  2161. "m_id": "{9E2C9AB5-8D10-4449-82C9-55EA7F8B3A58}"
  2162. }
  2163. }
  2164. }
  2165. }
  2166. },
  2167. {
  2168. "Id": {
  2169. "id": 1169104304429102
  2170. },
  2171. "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
  2172. "Components": {
  2173. "Component_[14529550718669830119]": {
  2174. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2175. "Id": 14529550718669830119,
  2176. "sourceEndpoint": {
  2177. "nodeId": {
  2178. "id": 1169057059788846
  2179. },
  2180. "slotId": {
  2181. "m_id": "{66A545AC-0303-4B09-82D7-ED6D185F2368}"
  2182. }
  2183. },
  2184. "targetEndpoint": {
  2185. "nodeId": {
  2186. "id": 1169039879919662
  2187. },
  2188. "slotId": {
  2189. "m_id": "{2A40F71F-91B0-46D6-ADFA-21DBA87BFCCD}"
  2190. }
  2191. }
  2192. }
  2193. }
  2194. },
  2195. {
  2196. "Id": {
  2197. "id": 1169108599396398
  2198. },
  2199. "Name": "srcEndpoint=(Divide By Number (/): Vector3), destEndpoint=(Expect Equal: Candidate)",
  2200. "Components": {
  2201. "Component_[13166566426944303017]": {
  2202. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2203. "Id": 13166566426944303017,
  2204. "sourceEndpoint": {
  2205. "nodeId": {
  2206. "id": 1169057059788846
  2207. },
  2208. "slotId": {
  2209. "m_id": "{EE36CC11-38C7-4A4D-9D0F-BD567B4C817F}"
  2210. }
  2211. },
  2212. "targetEndpoint": {
  2213. "nodeId": {
  2214. "id": 1169039879919662
  2215. },
  2216. "slotId": {
  2217. "m_id": "{898F676B-D784-4101-9700-4BEEC8F11548}"
  2218. }
  2219. }
  2220. }
  2221. }
  2222. },
  2223. {
  2224. "Id": {
  2225. "id": 1169112894363694
  2226. },
  2227. "Name": "srcEndpoint=(Get Variable: Vector4), destEndpoint=(Divide By Number (/): Number: 0)",
  2228. "Components": {
  2229. "Component_[2549747633646965828]": {
  2230. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2231. "Id": 2549747633646965828,
  2232. "sourceEndpoint": {
  2233. "nodeId": {
  2234. "id": 1169048469854254
  2235. },
  2236. "slotId": {
  2237. "m_id": "{09688E45-0216-45D7-8E03-3F5D44344E0D}"
  2238. }
  2239. },
  2240. "targetEndpoint": {
  2241. "nodeId": {
  2242. "id": 1169078534625326
  2243. },
  2244. "slotId": {
  2245. "m_id": "{8E5A9F36-BA66-4037-8E09-75C99C89BA13}"
  2246. }
  2247. }
  2248. }
  2249. }
  2250. },
  2251. {
  2252. "Id": {
  2253. "id": 1169117189330990
  2254. },
  2255. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
  2256. "Components": {
  2257. "Component_[15143367894503418097]": {
  2258. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2259. "Id": 15143367894503418097,
  2260. "sourceEndpoint": {
  2261. "nodeId": {
  2262. "id": 1169039879919662
  2263. },
  2264. "slotId": {
  2265. "m_id": "{8C4FD72A-329B-4C30-AB16-9D96C10C0B3F}"
  2266. }
  2267. },
  2268. "targetEndpoint": {
  2269. "nodeId": {
  2270. "id": 1169048469854254
  2271. },
  2272. "slotId": {
  2273. "m_id": "{1B2A3B1F-9292-4D32-8AFB-A28C9AC31151}"
  2274. }
  2275. }
  2276. }
  2277. }
  2278. },
  2279. {
  2280. "Id": {
  2281. "id": 1169121484298286
  2282. },
  2283. "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
  2284. "Components": {
  2285. "Component_[14366675491744359805]": {
  2286. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2287. "Id": 14366675491744359805,
  2288. "sourceEndpoint": {
  2289. "nodeId": {
  2290. "id": 1169078534625326
  2291. },
  2292. "slotId": {
  2293. "m_id": "{6DC8B9D0-B06E-4989-8EFC-A43D6302A667}"
  2294. }
  2295. },
  2296. "targetEndpoint": {
  2297. "nodeId": {
  2298. "id": 1169061354756142
  2299. },
  2300. "slotId": {
  2301. "m_id": "{52DE98D4-037C-490B-B959-900DB788C7E9}"
  2302. }
  2303. }
  2304. }
  2305. }
  2306. },
  2307. {
  2308. "Id": {
  2309. "id": 1169125779265582
  2310. },
  2311. "Name": "srcEndpoint=(Divide By Number (/): Vector4), destEndpoint=(Expect Equal: Candidate)",
  2312. "Components": {
  2313. "Component_[2091386451358171135]": {
  2314. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2315. "Id": 2091386451358171135,
  2316. "sourceEndpoint": {
  2317. "nodeId": {
  2318. "id": 1169078534625326
  2319. },
  2320. "slotId": {
  2321. "m_id": "{0A995095-6F8B-4913-978F-14E832EB1710}"
  2322. }
  2323. },
  2324. "targetEndpoint": {
  2325. "nodeId": {
  2326. "id": 1169061354756142
  2327. },
  2328. "slotId": {
  2329. "m_id": "{AF30559F-3209-4BD5-A457-4132E30FB4F1}"
  2330. }
  2331. }
  2332. }
  2333. }
  2334. },
  2335. {
  2336. "Id": {
  2337. "id": 1169130074232878
  2338. },
  2339. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
  2340. "Components": {
  2341. "Component_[12310719162616229754]": {
  2342. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2343. "Id": 12310719162616229754,
  2344. "sourceEndpoint": {
  2345. "nodeId": {
  2346. "id": 1169061354756142
  2347. },
  2348. "slotId": {
  2349. "m_id": "{C13DA8B4-3491-4DEB-BAFC-14936E601CD2}"
  2350. }
  2351. },
  2352. "targetEndpoint": {
  2353. "nodeId": {
  2354. "id": 1169087124559918
  2355. },
  2356. "slotId": {
  2357. "m_id": "{C3F3775A-0B31-4C10-9367-4C66A1C3B7BE}"
  2358. }
  2359. }
  2360. }
  2361. }
  2362. },
  2363. {
  2364. "Id": {
  2365. "id": 1169134369200174
  2366. },
  2367. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
  2368. "Components": {
  2369. "Component_[18110927024221570531]": {
  2370. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2371. "Id": 18110927024221570531,
  2372. "sourceEndpoint": {
  2373. "nodeId": {
  2374. "id": 1169048469854254
  2375. },
  2376. "slotId": {
  2377. "m_id": "{18E88B9C-2D4D-40FD-87D6-551AD23E294E}"
  2378. }
  2379. },
  2380. "targetEndpoint": {
  2381. "nodeId": {
  2382. "id": 1169078534625326
  2383. },
  2384. "slotId": {
  2385. "m_id": "{9FE4C555-D932-4A18-838B-4B9CBC5BB935}"
  2386. }
  2387. }
  2388. }
  2389. }
  2390. },
  2391. {
  2392. "Id": {
  2393. "id": 1169138664167470
  2394. },
  2395. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
  2396. "Components": {
  2397. "Component_[8041430352362004847]": {
  2398. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2399. "Id": 8041430352362004847,
  2400. "sourceEndpoint": {
  2401. "nodeId": {
  2402. "id": 1169087124559918
  2403. },
  2404. "slotId": {
  2405. "m_id": "{191BB719-31E2-46A3-8270-95BAA15CB14B}"
  2406. }
  2407. },
  2408. "targetEndpoint": {
  2409. "nodeId": {
  2410. "id": 1169035584952366
  2411. },
  2412. "slotId": {
  2413. "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
  2414. }
  2415. }
  2416. }
  2417. }
  2418. },
  2419. {
  2420. "Id": {
  2421. "id": 1169142959134766
  2422. },
  2423. "Name": "srcEndpoint=(Get Variable: Vector2), destEndpoint=(Divide By Number (/): Number: 0)",
  2424. "Components": {
  2425. "Component_[17324611235669261863]": {
  2426. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2427. "Id": 17324611235669261863,
  2428. "sourceEndpoint": {
  2429. "nodeId": {
  2430. "id": 1169087124559918
  2431. },
  2432. "slotId": {
  2433. "m_id": "{18990D1E-AB17-44BB-8D0A-CB6B66634A75}"
  2434. }
  2435. },
  2436. "targetEndpoint": {
  2437. "nodeId": {
  2438. "id": 1169035584952366
  2439. },
  2440. "slotId": {
  2441. "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
  2442. }
  2443. }
  2444. }
  2445. }
  2446. },
  2447. {
  2448. "Id": {
  2449. "id": 1169147254102062
  2450. },
  2451. "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
  2452. "Components": {
  2453. "Component_[12566249215597622371]": {
  2454. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2455. "Id": 12566249215597622371,
  2456. "sourceEndpoint": {
  2457. "nodeId": {
  2458. "id": 1169035584952366
  2459. },
  2460. "slotId": {
  2461. "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
  2462. }
  2463. },
  2464. "targetEndpoint": {
  2465. "nodeId": {
  2466. "id": 1169074239658030
  2467. },
  2468. "slotId": {
  2469. "m_id": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
  2470. }
  2471. }
  2472. }
  2473. }
  2474. },
  2475. {
  2476. "Id": {
  2477. "id": 1169151549069358
  2478. },
  2479. "Name": "srcEndpoint=(Divide By Number (/): Vector2), destEndpoint=(Expect Equal: Candidate)",
  2480. "Components": {
  2481. "Component_[11804285279369977009]": {
  2482. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2483. "Id": 11804285279369977009,
  2484. "sourceEndpoint": {
  2485. "nodeId": {
  2486. "id": 1169035584952366
  2487. },
  2488. "slotId": {
  2489. "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
  2490. }
  2491. },
  2492. "targetEndpoint": {
  2493. "nodeId": {
  2494. "id": 1169074239658030
  2495. },
  2496. "slotId": {
  2497. "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
  2498. }
  2499. }
  2500. }
  2501. }
  2502. },
  2503. {
  2504. "Id": {
  2505. "id": 1169155844036654
  2506. },
  2507. "Name": "srcEndpoint=(Get Variable: Number), destEndpoint=(Divide By Number (/): Vector2: 0)",
  2508. "Components": {
  2509. "Component_[12115865105734748798]": {
  2510. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2511. "Id": 12115865105734748798,
  2512. "sourceEndpoint": {
  2513. "nodeId": {
  2514. "id": 1169082829592622
  2515. },
  2516. "slotId": {
  2517. "m_id": "{EE59432E-B300-4E76-869A-21BCECE000D8}"
  2518. }
  2519. },
  2520. "targetEndpoint": {
  2521. "nodeId": {
  2522. "id": 1169052764821550
  2523. },
  2524. "slotId": {
  2525. "m_id": "{0665C300-053E-42E1-BF86-DCFC84E5126B}"
  2526. }
  2527. }
  2528. }
  2529. }
  2530. },
  2531. {
  2532. "Id": {
  2533. "id": 1169160139003950
  2534. },
  2535. "Name": "srcEndpoint=(Get Variable: Out), destEndpoint=(Divide By Number (/): In)",
  2536. "Components": {
  2537. "Component_[3718695095908150126]": {
  2538. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2539. "Id": 3718695095908150126,
  2540. "sourceEndpoint": {
  2541. "nodeId": {
  2542. "id": 1169082829592622
  2543. },
  2544. "slotId": {
  2545. "m_id": "{BD25B5F1-E9A6-4F1C-8A9D-FD097799541A}"
  2546. }
  2547. },
  2548. "targetEndpoint": {
  2549. "nodeId": {
  2550. "id": 1169052764821550
  2551. },
  2552. "slotId": {
  2553. "m_id": "{865ABCCE-D8CD-4029-A876-E850CF03F84F}"
  2554. }
  2555. }
  2556. }
  2557. }
  2558. },
  2559. {
  2560. "Id": {
  2561. "id": 1169164433971246
  2562. },
  2563. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Get Variable: In)",
  2564. "Components": {
  2565. "Component_[7256874039647838913]": {
  2566. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2567. "Id": 7256874039647838913,
  2568. "sourceEndpoint": {
  2569. "nodeId": {
  2570. "id": 1169074239658030
  2571. },
  2572. "slotId": {
  2573. "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
  2574. }
  2575. },
  2576. "targetEndpoint": {
  2577. "nodeId": {
  2578. "id": 1169082829592622
  2579. },
  2580. "slotId": {
  2581. "m_id": "{7C0BF99C-3CD3-4D52-B484-606052B3BF3F}"
  2582. }
  2583. }
  2584. }
  2585. }
  2586. },
  2587. {
  2588. "Id": {
  2589. "id": 1169168728938542
  2590. },
  2591. "Name": "srcEndpoint=(Divide By Number (/): Out), destEndpoint=(Expect Equal: In)",
  2592. "Components": {
  2593. "Component_[11565579308297232731]": {
  2594. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2595. "Id": 11565579308297232731,
  2596. "sourceEndpoint": {
  2597. "nodeId": {
  2598. "id": 1169052764821550
  2599. },
  2600. "slotId": {
  2601. "m_id": "{ADA33A10-E6FF-40FE-B489-DCE74135312E}"
  2602. }
  2603. },
  2604. "targetEndpoint": {
  2605. "nodeId": {
  2606. "id": 1169065649723438
  2607. },
  2608. "slotId": {
  2609. "m_id": "{0E667870-6630-4C7C-BE50-A1F46638428B}"
  2610. }
  2611. }
  2612. }
  2613. }
  2614. },
  2615. {
  2616. "Id": {
  2617. "id": 1169173023905838
  2618. },
  2619. "Name": "srcEndpoint=(Divide By Number (/): Number), destEndpoint=(Expect Equal: Candidate)",
  2620. "Components": {
  2621. "Component_[3630496600397254138]": {
  2622. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2623. "Id": 3630496600397254138,
  2624. "sourceEndpoint": {
  2625. "nodeId": {
  2626. "id": 1169052764821550
  2627. },
  2628. "slotId": {
  2629. "m_id": "{692A5CC4-C517-46BA-BC22-0649250CD8FD}"
  2630. }
  2631. },
  2632. "targetEndpoint": {
  2633. "nodeId": {
  2634. "id": 1169065649723438
  2635. },
  2636. "slotId": {
  2637. "m_id": "{FA855A24-6A3F-4ECD-A523-6B0415F3B0A8}"
  2638. }
  2639. }
  2640. }
  2641. }
  2642. },
  2643. {
  2644. "Id": {
  2645. "id": 1169177318873134
  2646. },
  2647. "Name": "srcEndpoint=(Expect Equal: Out), destEndpoint=(Mark Complete: In)",
  2648. "Components": {
  2649. "Component_[10134856753590221112]": {
  2650. "$type": "{64CA5016-E803-4AC4-9A36-BDA2C890C6EB} Connection",
  2651. "Id": 10134856753590221112,
  2652. "sourceEndpoint": {
  2653. "nodeId": {
  2654. "id": 1169065649723438
  2655. },
  2656. "slotId": {
  2657. "m_id": "{9D884ECE-0B50-4D8F-8612-72EB788326E2}"
  2658. }
  2659. },
  2660. "targetEndpoint": {
  2661. "nodeId": {
  2662. "id": 1169044174886958
  2663. },
  2664. "slotId": {
  2665. "m_id": "{16DE57F4-B4A8-4421-A9D3-8AA1D8DD78E9}"
  2666. }
  2667. }
  2668. }
  2669. }
  2670. }
  2671. ]
  2672. },
  2673. "m_assetType": "{3E2AC8CD-713F-453E-967F-29517F331784}",
  2674. "versionData": {
  2675. "_grammarVersion": 1,
  2676. "_runtimeVersion": 1,
  2677. "_fileVersion": 1
  2678. },
  2679. "m_variableCounter": 7,
  2680. "GraphCanvasData": [
  2681. {
  2682. "Key": {
  2683. "id": 1169026995017774
  2684. },
  2685. "Value": {
  2686. "ComponentData": {
  2687. "{5F84B500-8C45-40D1-8EFC-A5306B241444}": {
  2688. "$type": "SceneComponentSaveData",
  2689. "ViewParams": {
  2690. "Scale": 0.8121803,
  2691. "AnchorX": -261.0257873535156,
  2692. "AnchorY": 163.75674438476563
  2693. }
  2694. }
  2695. }
  2696. }
  2697. },
  2698. {
  2699. "Key": {
  2700. "id": 1169031289985070
  2701. },
  2702. "Value": {
  2703. "ComponentData": {
  2704. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2705. "$type": "NodeSaveData"
  2706. },
  2707. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2708. "$type": "GeneralNodeTitleComponentSaveData",
  2709. "PaletteOverride": "GetVariableNodeTitlePalette"
  2710. },
  2711. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2712. "$type": "GeometrySaveData",
  2713. "Position": [
  2714. 740.0,
  2715. 260.0
  2716. ]
  2717. },
  2718. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2719. "$type": "StylingComponentSaveData",
  2720. "SubStyle": ".getVariable"
  2721. },
  2722. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2723. "$type": "PersistentIdComponentSaveData",
  2724. "PersistentId": "{8F099678-EDB0-498B-9908-A46D48468A98}"
  2725. }
  2726. }
  2727. }
  2728. },
  2729. {
  2730. "Key": {
  2731. "id": 1169035584952366
  2732. },
  2733. "Value": {
  2734. "ComponentData": {
  2735. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2736. "$type": "NodeSaveData"
  2737. },
  2738. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2739. "$type": "GeneralNodeTitleComponentSaveData",
  2740. "PaletteOverride": "MethodNodeTitlePalette"
  2741. },
  2742. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2743. "$type": "GeometrySaveData",
  2744. "Position": [
  2745. 780.0,
  2746. 820.0
  2747. ]
  2748. },
  2749. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2750. "$type": "StylingComponentSaveData",
  2751. "SubStyle": ".method"
  2752. },
  2753. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2754. "$type": "PersistentIdComponentSaveData",
  2755. "PersistentId": "{A62D51AC-B678-43DD-816D-8A852D018B20}"
  2756. }
  2757. }
  2758. }
  2759. },
  2760. {
  2761. "Key": {
  2762. "id": 1169039879919662
  2763. },
  2764. "Value": {
  2765. "ComponentData": {
  2766. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2767. "$type": "NodeSaveData"
  2768. },
  2769. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2770. "$type": "GeneralNodeTitleComponentSaveData",
  2771. "PaletteOverride": "MethodNodeTitlePalette"
  2772. },
  2773. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2774. "$type": "GeometrySaveData",
  2775. "Position": [
  2776. 1380.0,
  2777. 260.0
  2778. ]
  2779. },
  2780. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2781. "$type": "StylingComponentSaveData",
  2782. "SubStyle": ".method"
  2783. },
  2784. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2785. "$type": "PersistentIdComponentSaveData",
  2786. "PersistentId": "{14AF1AFD-C05B-4355-B87C-498997FAE23C}"
  2787. }
  2788. }
  2789. }
  2790. },
  2791. {
  2792. "Key": {
  2793. "id": 1169044174886958
  2794. },
  2795. "Value": {
  2796. "ComponentData": {
  2797. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2798. "$type": "NodeSaveData"
  2799. },
  2800. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2801. "$type": "GeneralNodeTitleComponentSaveData",
  2802. "PaletteOverride": "MethodNodeTitlePalette"
  2803. },
  2804. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2805. "$type": "GeometrySaveData",
  2806. "Position": [
  2807. 1640.0,
  2808. 1080.0
  2809. ]
  2810. },
  2811. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2812. "$type": "StylingComponentSaveData",
  2813. "SubStyle": ".method"
  2814. },
  2815. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2816. "$type": "PersistentIdComponentSaveData",
  2817. "PersistentId": "{E3549535-86EF-4D6B-B7C3-3520D93F23C2}"
  2818. }
  2819. }
  2820. }
  2821. },
  2822. {
  2823. "Key": {
  2824. "id": 1169048469854254
  2825. },
  2826. "Value": {
  2827. "ComponentData": {
  2828. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2829. "$type": "NodeSaveData"
  2830. },
  2831. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2832. "$type": "GeneralNodeTitleComponentSaveData",
  2833. "PaletteOverride": "GetVariableNodeTitlePalette"
  2834. },
  2835. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2836. "$type": "GeometrySaveData",
  2837. "Position": [
  2838. 600.0,
  2839. 500.0
  2840. ]
  2841. },
  2842. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2843. "$type": "StylingComponentSaveData",
  2844. "SubStyle": ".getVariable"
  2845. },
  2846. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2847. "$type": "PersistentIdComponentSaveData",
  2848. "PersistentId": "{004EB439-3C68-4AF5-81F1-8EF629FA3D64}"
  2849. }
  2850. }
  2851. }
  2852. },
  2853. {
  2854. "Key": {
  2855. "id": 1169052764821550
  2856. },
  2857. "Value": {
  2858. "ComponentData": {
  2859. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2860. "$type": "NodeSaveData"
  2861. },
  2862. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2863. "$type": "GeneralNodeTitleComponentSaveData",
  2864. "PaletteOverride": "MethodNodeTitlePalette"
  2865. },
  2866. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2867. "$type": "GeometrySaveData",
  2868. "Position": [
  2869. 800.0,
  2870. 1080.0
  2871. ]
  2872. },
  2873. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2874. "$type": "StylingComponentSaveData",
  2875. "SubStyle": ".method"
  2876. },
  2877. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2878. "$type": "PersistentIdComponentSaveData",
  2879. "PersistentId": "{41F969AC-EAA4-4FBD-BB67-6809B06B8B59}"
  2880. }
  2881. }
  2882. }
  2883. },
  2884. {
  2885. "Key": {
  2886. "id": 1169057059788846
  2887. },
  2888. "Value": {
  2889. "ComponentData": {
  2890. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2891. "$type": "NodeSaveData"
  2892. },
  2893. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2894. "$type": "GeneralNodeTitleComponentSaveData",
  2895. "PaletteOverride": "MethodNodeTitlePalette"
  2896. },
  2897. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2898. "$type": "GeometrySaveData",
  2899. "Position": [
  2900. 920.0,
  2901. 280.0
  2902. ]
  2903. },
  2904. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2905. "$type": "StylingComponentSaveData",
  2906. "SubStyle": ".method"
  2907. },
  2908. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2909. "$type": "PersistentIdComponentSaveData",
  2910. "PersistentId": "{452F91E2-57D6-4523-85EC-31FF751DFC45}"
  2911. }
  2912. }
  2913. }
  2914. },
  2915. {
  2916. "Key": {
  2917. "id": 1169061354756142
  2918. },
  2919. "Value": {
  2920. "ComponentData": {
  2921. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2922. "$type": "NodeSaveData"
  2923. },
  2924. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2925. "$type": "GeneralNodeTitleComponentSaveData",
  2926. "PaletteOverride": "MethodNodeTitlePalette"
  2927. },
  2928. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2929. "$type": "GeometrySaveData",
  2930. "Position": [
  2931. 1220.0,
  2932. 520.0
  2933. ]
  2934. },
  2935. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2936. "$type": "StylingComponentSaveData",
  2937. "SubStyle": ".method"
  2938. },
  2939. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2940. "$type": "PersistentIdComponentSaveData",
  2941. "PersistentId": "{469FB2B0-871A-4062-AB09-01D075B45423}"
  2942. }
  2943. }
  2944. }
  2945. },
  2946. {
  2947. "Key": {
  2948. "id": 1169065649723438
  2949. },
  2950. "Value": {
  2951. "ComponentData": {
  2952. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2953. "$type": "NodeSaveData"
  2954. },
  2955. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2956. "$type": "GeneralNodeTitleComponentSaveData",
  2957. "PaletteOverride": "MethodNodeTitlePalette"
  2958. },
  2959. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2960. "$type": "GeometrySaveData",
  2961. "Position": [
  2962. 1260.0,
  2963. 1080.0
  2964. ]
  2965. },
  2966. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2967. "$type": "StylingComponentSaveData",
  2968. "SubStyle": ".method"
  2969. },
  2970. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  2971. "$type": "PersistentIdComponentSaveData",
  2972. "PersistentId": "{CA175C78-95DA-4FB2-ACAC-1743062097FE}"
  2973. }
  2974. }
  2975. }
  2976. },
  2977. {
  2978. "Key": {
  2979. "id": 1169069944690734
  2980. },
  2981. "Value": {
  2982. "ComponentData": {
  2983. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  2984. "$type": "NodeSaveData"
  2985. },
  2986. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  2987. "$type": "GeneralNodeTitleComponentSaveData",
  2988. "PaletteOverride": "TimeNodeTitlePalette"
  2989. },
  2990. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  2991. "$type": "GeometrySaveData",
  2992. "Position": [
  2993. 540.0,
  2994. 240.0
  2995. ]
  2996. },
  2997. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  2998. "$type": "StylingComponentSaveData"
  2999. },
  3000. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3001. "$type": "PersistentIdComponentSaveData",
  3002. "PersistentId": "{31E033CD-1FD1-44FB-B365-7390C202E0E5}"
  3003. }
  3004. }
  3005. }
  3006. },
  3007. {
  3008. "Key": {
  3009. "id": 1169074239658030
  3010. },
  3011. "Value": {
  3012. "ComponentData": {
  3013. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3014. "$type": "NodeSaveData"
  3015. },
  3016. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3017. "$type": "GeneralNodeTitleComponentSaveData",
  3018. "PaletteOverride": "MethodNodeTitlePalette"
  3019. },
  3020. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3021. "$type": "GeometrySaveData",
  3022. "Position": [
  3023. 1240.0,
  3024. 800.0
  3025. ]
  3026. },
  3027. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3028. "$type": "StylingComponentSaveData",
  3029. "SubStyle": ".method"
  3030. },
  3031. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3032. "$type": "PersistentIdComponentSaveData",
  3033. "PersistentId": "{89D54507-CF90-42BC-B110-883C6B8F2090}"
  3034. }
  3035. }
  3036. }
  3037. },
  3038. {
  3039. "Key": {
  3040. "id": 1169078534625326
  3041. },
  3042. "Value": {
  3043. "ComponentData": {
  3044. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3045. "$type": "NodeSaveData"
  3046. },
  3047. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3048. "$type": "GeneralNodeTitleComponentSaveData",
  3049. "PaletteOverride": "MethodNodeTitlePalette"
  3050. },
  3051. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3052. "$type": "GeometrySaveData",
  3053. "Position": [
  3054. 760.0,
  3055. 520.0
  3056. ]
  3057. },
  3058. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3059. "$type": "StylingComponentSaveData",
  3060. "SubStyle": ".method"
  3061. },
  3062. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3063. "$type": "PersistentIdComponentSaveData",
  3064. "PersistentId": "{CA3F11D3-4919-4330-B44C-CD9B9569D26E}"
  3065. }
  3066. }
  3067. }
  3068. },
  3069. {
  3070. "Key": {
  3071. "id": 1169082829592622
  3072. },
  3073. "Value": {
  3074. "ComponentData": {
  3075. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3076. "$type": "NodeSaveData"
  3077. },
  3078. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3079. "$type": "GeneralNodeTitleComponentSaveData",
  3080. "PaletteOverride": "GetVariableNodeTitlePalette"
  3081. },
  3082. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3083. "$type": "GeometrySaveData",
  3084. "Position": [
  3085. 560.0,
  3086. 1080.0
  3087. ]
  3088. },
  3089. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3090. "$type": "StylingComponentSaveData",
  3091. "SubStyle": ".getVariable"
  3092. },
  3093. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3094. "$type": "PersistentIdComponentSaveData",
  3095. "PersistentId": "{10D85700-49EE-4CF4-B878-A58661F1BAC2}"
  3096. }
  3097. }
  3098. }
  3099. },
  3100. {
  3101. "Key": {
  3102. "id": 1169087124559918
  3103. },
  3104. "Value": {
  3105. "ComponentData": {
  3106. "{24CB38BB-1705-4EC5-8F63-B574571B4DCD}": {
  3107. "$type": "NodeSaveData"
  3108. },
  3109. "{328FF15C-C302-458F-A43D-E1794DE0904E}": {
  3110. "$type": "GeneralNodeTitleComponentSaveData",
  3111. "PaletteOverride": "GetVariableNodeTitlePalette"
  3112. },
  3113. "{7CC444B1-F9B3-41B5-841B-0C4F2179F111}": {
  3114. "$type": "GeometrySaveData",
  3115. "Position": [
  3116. 600.0,
  3117. 800.0
  3118. ]
  3119. },
  3120. "{B0B99C8A-03AF-4CF6-A926-F65C874C3D97}": {
  3121. "$type": "StylingComponentSaveData",
  3122. "SubStyle": ".getVariable"
  3123. },
  3124. "{B1F49A35-8408-40DA-B79E-F1E3B64322CE}": {
  3125. "$type": "PersistentIdComponentSaveData",
  3126. "PersistentId": "{7627038F-E789-4413-B532-1E8CB05B2560}"
  3127. }
  3128. }
  3129. }
  3130. }
  3131. ],
  3132. "StatisticsHelper": {
  3133. "InstanceCounter": [
  3134. {
  3135. "Key": 508315135670798494,
  3136. "Value": 3
  3137. },
  3138. {
  3139. "Key": 524494764786010043,
  3140. "Value": 4
  3141. },
  3142. {
  3143. "Key": 4199610336680704683,
  3144. "Value": 1
  3145. },
  3146. {
  3147. "Key": 5197494077169729704,
  3148. "Value": 1
  3149. },
  3150. {
  3151. "Key": 6840657073857873079,
  3152. "Value": 1
  3153. },
  3154. {
  3155. "Key": 11113370063143720408,
  3156. "Value": 2
  3157. },
  3158. {
  3159. "Key": 13123804357695955873,
  3160. "Value": 1
  3161. },
  3162. {
  3163. "Key": 13220748678110195483,
  3164. "Value": 1
  3165. }
  3166. ]
  3167. }
  3168. },
  3169. "Component_[7868279102636482182]": {
  3170. "$type": "EditorGraphVariableManagerComponent",
  3171. "Id": 7868279102636482182,
  3172. "m_variableData": {
  3173. "m_nameVariableMap": [
  3174. {
  3175. "Key": {
  3176. "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
  3177. },
  3178. "Value": {
  3179. "Datum": {
  3180. "isOverloadedStorage": false,
  3181. "scriptCanvasType": {
  3182. "m_type": 10
  3183. },
  3184. "isNullPointer": false,
  3185. "$type": "Vector4",
  3186. "value": [
  3187. 7.0,
  3188. 7.0,
  3189. 7.0,
  3190. 7.0
  3191. ],
  3192. "label": "Vector4"
  3193. },
  3194. "VariableId": {
  3195. "m_id": "{4CEF76BB-968B-47DB-BA32-528F1CFC38E0}"
  3196. },
  3197. "VariableName": "V4"
  3198. }
  3199. },
  3200. {
  3201. "Key": {
  3202. "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
  3203. },
  3204. "Value": {
  3205. "Datum": {
  3206. "isOverloadedStorage": false,
  3207. "scriptCanvasType": {
  3208. "m_type": 9
  3209. },
  3210. "isNullPointer": false,
  3211. "$type": "Vector2",
  3212. "value": [
  3213. 7.0,
  3214. 7.0
  3215. ],
  3216. "label": "Vector2"
  3217. },
  3218. "VariableId": {
  3219. "m_id": "{53CC2849-4277-47E5-8132-F78E945529FE}"
  3220. },
  3221. "VariableName": "V2"
  3222. }
  3223. },
  3224. {
  3225. "Key": {
  3226. "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
  3227. },
  3228. "Value": {
  3229. "Datum": {
  3230. "isOverloadedStorage": false,
  3231. "scriptCanvasType": {
  3232. "m_type": 8
  3233. },
  3234. "isNullPointer": false,
  3235. "$type": "Vector3",
  3236. "value": [
  3237. 7.0,
  3238. 7.0,
  3239. 7.0
  3240. ],
  3241. "label": "Vector3"
  3242. },
  3243. "VariableId": {
  3244. "m_id": "{71CFE8D3-82FB-42A5-8031-601F3E09ACC1}"
  3245. },
  3246. "VariableName": "V3"
  3247. }
  3248. },
  3249. {
  3250. "Key": {
  3251. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  3252. },
  3253. "Value": {
  3254. "Datum": {
  3255. "isOverloadedStorage": false,
  3256. "scriptCanvasType": {
  3257. "m_type": 3
  3258. },
  3259. "isNullPointer": false,
  3260. "$type": "double",
  3261. "value": 1.0,
  3262. "label": "Number"
  3263. },
  3264. "VariableId": {
  3265. "m_id": "{9C1A3554-F3F5-4C09-ACB1-83A03353A837}"
  3266. },
  3267. "VariableName": "one"
  3268. }
  3269. }
  3270. ]
  3271. }
  3272. }
  3273. }
  3274. }
  3275. }
  3276. }