AppleTree.prefab 237 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100
  1. {
  2. "ContainerEntity": {
  3. "Id": "ContainerEntity",
  4. "Name": "AppleTree",
  5. "Components": {
  6. "Component_[13780854788209656370]": {
  7. "$type": "EditorOnlyEntityComponent",
  8. "Id": 13780854788209656370
  9. },
  10. "Component_[14844147111191371400]": {
  11. "$type": "EditorInspectorComponent",
  12. "Id": 14844147111191371400
  13. },
  14. "Component_[17787362634089348803]": {
  15. "$type": "EditorLockComponent",
  16. "Id": 17787362634089348803
  17. },
  18. "Component_[17843908741683212556]": {
  19. "$type": "EditorEntityIconComponent",
  20. "Id": 17843908741683212556
  21. },
  22. "Component_[2636528230258506924]": {
  23. "$type": "EditorVisibilityComponent",
  24. "Id": 2636528230258506924
  25. },
  26. "Component_[2919361912050306087]": {
  27. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  28. "Id": 2919361912050306087,
  29. "Parent Entity": ""
  30. },
  31. "Component_[4620877604030964358]": {
  32. "$type": "EditorEntitySortComponent",
  33. "Id": 4620877604030964358,
  34. "Child Entity Order": [
  35. "Entity_[691956415503188]",
  36. "Instance_[1548645907238462]/ContainerEntity",
  37. "Instance_[408505193001855]/ContainerEntity",
  38. "Instance_[401641835262847]/ContainerEntity",
  39. "Entity_[408436473525119]",
  40. "Entity_[408414998688639]",
  41. "Entity_[408432178557823]",
  42. "Entity_[396049787843455]",
  43. "Entity_[394671103341439]",
  44. "Entity_[396286011044735]",
  45. "Entity_[408419293655935]",
  46. "Entity_[408423588623231]",
  47. "Entity_[408427883590527]",
  48. "Entity_[396097032483711]",
  49. "Entity_[408698466530175]",
  50. "Entity_[396238766404479]",
  51. "Entity_[396191521764223]",
  52. "Entity_[396144277123967]",
  53. "Entity_[394718347981695]",
  54. "Entity_[396320370783103]",
  55. "Instance_[401706259772287]/ContainerEntity",
  56. "Instance_[408797250777983]/ContainerEntity",
  57. "Instance_[401680489968511]/ContainerEntity",
  58. "Instance_[408758596072319]/ContainerEntity",
  59. "Instance_[401654720164735]/ContainerEntity",
  60. "Instance_[408402113786751]/ContainerEntity",
  61. "Instance_[401667605066623]/ContainerEntity",
  62. "Instance_[401693374870399]/ContainerEntity",
  63. "Instance_[401719144674175]/ContainerEntity"
  64. ]
  65. },
  66. "Component_[6545066386370449417]": {
  67. "$type": "EditorPrefabComponent",
  68. "Id": 6545066386370449417
  69. },
  70. "Component_[7635208911897638298]": {
  71. "$type": "EditorDisabledCompositionComponent",
  72. "Id": 7635208911897638298
  73. },
  74. "Component_[7786292261310069513]": {
  75. "$type": "EditorPendingCompositionComponent",
  76. "Id": 7786292261310069513
  77. }
  78. }
  79. },
  80. "Entities": {
  81. "Entity_[394671103341439]": {
  82. "Id": "Entity_[394671103341439]",
  83. "Name": "AppleSet3",
  84. "Components": {
  85. "Component_[12045557113666511045]": {
  86. "$type": "EditorLockComponent",
  87. "Id": 12045557113666511045
  88. },
  89. "Component_[12208097866167037017]": {
  90. "$type": "EditorVisibilityComponent",
  91. "Id": 12208097866167037017
  92. },
  93. "Component_[1411768194965246394]": {
  94. "$type": "EditorDisabledCompositionComponent",
  95. "Id": 1411768194965246394
  96. },
  97. "Component_[1663385921584959061]": {
  98. "$type": "EditorPendingCompositionComponent",
  99. "Id": 1663385921584959061
  100. },
  101. "Component_[16837091959608796917]": {
  102. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  103. "Id": 16837091959608796917,
  104. "Parent Entity": "ContainerEntity",
  105. "Transform Data": {
  106. "Translate": [
  107. 0.25472646951675415,
  108. -1.862645149230957e-9,
  109. -0.6943174004554749
  110. ],
  111. "Rotate": [
  112. 0.0,
  113. -16.432308197021484,
  114. 0.0
  115. ]
  116. }
  117. },
  118. "Component_[17148999990205098745]": {
  119. "$type": "EditorInspectorComponent",
  120. "Id": 17148999990205098745
  121. },
  122. "Component_[17941466025559499973]": {
  123. "$type": "EditorOnlyEntityComponent",
  124. "Id": 17941466025559499973
  125. },
  126. "Component_[7310719958678826723]": {
  127. "$type": "EditorEntitySortComponent",
  128. "Id": 7310719958678826723,
  129. "Child Entity Order": [
  130. "Instance_[1548645907238462]/ContainerEntity",
  131. "Instance_[394645333537663]/ContainerEntity",
  132. "Instance_[394658218439551]/ContainerEntity"
  133. ]
  134. },
  135. "Component_[8898839633465917423]": {
  136. "$type": "EditorEntityIconComponent",
  137. "Id": 8898839633465917423
  138. }
  139. }
  140. },
  141. "Entity_[394718347981695]": {
  142. "Id": "Entity_[394718347981695]",
  143. "Name": "AppleSet2",
  144. "Components": {
  145. "Component_[10224979700700263665]": {
  146. "$type": "EditorLockComponent",
  147. "Id": 10224979700700263665
  148. },
  149. "Component_[14002916326505929294]": {
  150. "$type": "EditorPendingCompositionComponent",
  151. "Id": 14002916326505929294
  152. },
  153. "Component_[14694928086455280572]": {
  154. "$type": "EditorVisibilityComponent",
  155. "Id": 14694928086455280572
  156. },
  157. "Component_[16521195961010385000]": {
  158. "$type": "EditorInspectorComponent",
  159. "Id": 16521195961010385000
  160. },
  161. "Component_[17062473746437336750]": {
  162. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  163. "Id": 17062473746437336750,
  164. "Parent Entity": "ContainerEntity",
  165. "Transform Data": {
  166. "Translate": [
  167. -0.3181678056716919,
  168. 0.0,
  169. 0.0
  170. ]
  171. }
  172. },
  173. "Component_[17134521475928377828]": {
  174. "$type": "EditorEntityIconComponent",
  175. "Id": 17134521475928377828
  176. },
  177. "Component_[2256767078962160090]": {
  178. "$type": "EditorOnlyEntityComponent",
  179. "Id": 2256767078962160090
  180. },
  181. "Component_[708520844852293383]": {
  182. "$type": "EditorEntitySortComponent",
  183. "Id": 708520844852293383,
  184. "Child Entity Order": [
  185. "Instance_[394692578177919]/ContainerEntity",
  186. "Instance_[394679693276031]/ContainerEntity"
  187. ]
  188. },
  189. "Component_[968826354313233377]": {
  190. "$type": "EditorDisabledCompositionComponent",
  191. "Id": 968826354313233377
  192. }
  193. }
  194. },
  195. "Entity_[396049787843455]": {
  196. "Id": "Entity_[396049787843455]",
  197. "Name": "AppleSet3",
  198. "Components": {
  199. "Component_[12045557113666511045]": {
  200. "$type": "EditorLockComponent",
  201. "Id": 12045557113666511045
  202. },
  203. "Component_[12208097866167037017]": {
  204. "$type": "EditorVisibilityComponent",
  205. "Id": 12208097866167037017
  206. },
  207. "Component_[1411768194965246394]": {
  208. "$type": "EditorDisabledCompositionComponent",
  209. "Id": 1411768194965246394
  210. },
  211. "Component_[1663385921584959061]": {
  212. "$type": "EditorPendingCompositionComponent",
  213. "Id": 1663385921584959061
  214. },
  215. "Component_[16837091959608796917]": {
  216. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  217. "Id": 16837091959608796917,
  218. "Parent Entity": "ContainerEntity",
  219. "Transform Data": {
  220. "Translate": [
  221. -0.17437490820884705,
  222. -0.376118540763855,
  223. -0.8384192585945129
  224. ],
  225. "Rotate": [
  226. 0.0,
  227. -16.432308197021484,
  228. 0.0
  229. ]
  230. }
  231. },
  232. "Component_[17148999990205098745]": {
  233. "$type": "EditorInspectorComponent",
  234. "Id": 17148999990205098745
  235. },
  236. "Component_[17941466025559499973]": {
  237. "$type": "EditorOnlyEntityComponent",
  238. "Id": 17941466025559499973
  239. },
  240. "Component_[7310719958678826723]": {
  241. "$type": "EditorEntitySortComponent",
  242. "Id": 7310719958678826723,
  243. "Child Entity Order": [
  244. "Instance_[1548645907238462]/ContainerEntity",
  245. "Instance_[394645333537663]/ContainerEntity",
  246. "Instance_[394658218439551]/ContainerEntity",
  247. "Instance_[396062672745343]/ContainerEntity",
  248. "Instance_[396054082810751]/ContainerEntity",
  249. "Instance_[396058377778047]/ContainerEntity"
  250. ]
  251. },
  252. "Component_[8898839633465917423]": {
  253. "$type": "EditorEntityIconComponent",
  254. "Id": 8898839633465917423
  255. }
  256. }
  257. },
  258. "Entity_[396097032483711]": {
  259. "Id": "Entity_[396097032483711]",
  260. "Name": "AppleSet3",
  261. "Components": {
  262. "Component_[12045557113666511045]": {
  263. "$type": "EditorLockComponent",
  264. "Id": 12045557113666511045
  265. },
  266. "Component_[12208097866167037017]": {
  267. "$type": "EditorVisibilityComponent",
  268. "Id": 12208097866167037017
  269. },
  270. "Component_[1411768194965246394]": {
  271. "$type": "EditorDisabledCompositionComponent",
  272. "Id": 1411768194965246394
  273. },
  274. "Component_[1663385921584959061]": {
  275. "$type": "EditorPendingCompositionComponent",
  276. "Id": 1663385921584959061
  277. },
  278. "Component_[16837091959608796917]": {
  279. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  280. "Id": 16837091959608796917,
  281. "Parent Entity": "ContainerEntity",
  282. "Transform Data": {
  283. "Translate": [
  284. 0.32857051491737366,
  285. -0.09568195044994354,
  286. -1.0883463621139526
  287. ],
  288. "Rotate": [
  289. -11.174627304077148,
  290. -12.125296592712402,
  291. -43.242713928222656
  292. ]
  293. }
  294. },
  295. "Component_[17148999990205098745]": {
  296. "$type": "EditorInspectorComponent",
  297. "Id": 17148999990205098745
  298. },
  299. "Component_[17941466025559499973]": {
  300. "$type": "EditorOnlyEntityComponent",
  301. "Id": 17941466025559499973
  302. },
  303. "Component_[7310719958678826723]": {
  304. "$type": "EditorEntitySortComponent",
  305. "Id": 7310719958678826723,
  306. "Child Entity Order": [
  307. "Instance_[1548645907238462]/ContainerEntity",
  308. "Instance_[394645333537663]/ContainerEntity",
  309. "Instance_[394658218439551]/ContainerEntity",
  310. "Instance_[396062672745343]/ContainerEntity",
  311. "Instance_[396054082810751]/ContainerEntity",
  312. "Instance_[396058377778047]/ContainerEntity",
  313. "Instance_[396105622418303]/ContainerEntity",
  314. "Instance_[396101327451007]/ContainerEntity",
  315. "Instance_[396109917385599]/ContainerEntity"
  316. ]
  317. },
  318. "Component_[8898839633465917423]": {
  319. "$type": "EditorEntityIconComponent",
  320. "Id": 8898839633465917423
  321. }
  322. }
  323. },
  324. "Entity_[396144277123967]": {
  325. "Id": "Entity_[396144277123967]",
  326. "Name": "AppleSet3",
  327. "Components": {
  328. "Component_[12045557113666511045]": {
  329. "$type": "EditorLockComponent",
  330. "Id": 12045557113666511045
  331. },
  332. "Component_[12208097866167037017]": {
  333. "$type": "EditorVisibilityComponent",
  334. "Id": 12208097866167037017
  335. },
  336. "Component_[1411768194965246394]": {
  337. "$type": "EditorDisabledCompositionComponent",
  338. "Id": 1411768194965246394
  339. },
  340. "Component_[1663385921584959061]": {
  341. "$type": "EditorPendingCompositionComponent",
  342. "Id": 1663385921584959061
  343. },
  344. "Component_[16837091959608796917]": {
  345. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  346. "Id": 16837091959608796917,
  347. "Parent Entity": "ContainerEntity",
  348. "Transform Data": {
  349. "Translate": [
  350. 0.3016086518764496,
  351. 0.41863688826560974,
  352. -0.5272274017333984
  353. ],
  354. "Rotate": [
  355. -11.174627304077148,
  356. -12.125296592712402,
  357. -43.242713928222656
  358. ]
  359. }
  360. },
  361. "Component_[17148999990205098745]": {
  362. "$type": "EditorInspectorComponent",
  363. "Id": 17148999990205098745
  364. },
  365. "Component_[17941466025559499973]": {
  366. "$type": "EditorOnlyEntityComponent",
  367. "Id": 17941466025559499973
  368. },
  369. "Component_[7310719958678826723]": {
  370. "$type": "EditorEntitySortComponent",
  371. "Id": 7310719958678826723,
  372. "Child Entity Order": [
  373. "Instance_[1548645907238462]/ContainerEntity",
  374. "Instance_[394645333537663]/ContainerEntity",
  375. "Instance_[394658218439551]/ContainerEntity",
  376. "Instance_[396062672745343]/ContainerEntity",
  377. "Instance_[396054082810751]/ContainerEntity",
  378. "Instance_[396058377778047]/ContainerEntity",
  379. "Instance_[396105622418303]/ContainerEntity",
  380. "Instance_[396101327451007]/ContainerEntity",
  381. "Instance_[396109917385599]/ContainerEntity",
  382. "Instance_[396152867058559]/ContainerEntity",
  383. "Instance_[396148572091263]/ContainerEntity",
  384. "Instance_[396157162025855]/ContainerEntity"
  385. ]
  386. },
  387. "Component_[8898839633465917423]": {
  388. "$type": "EditorEntityIconComponent",
  389. "Id": 8898839633465917423
  390. }
  391. }
  392. },
  393. "Entity_[396191521764223]": {
  394. "Id": "Entity_[396191521764223]",
  395. "Name": "AppleSet3",
  396. "Components": {
  397. "Component_[12045557113666511045]": {
  398. "$type": "EditorLockComponent",
  399. "Id": 12045557113666511045
  400. },
  401. "Component_[12208097866167037017]": {
  402. "$type": "EditorVisibilityComponent",
  403. "Id": 12208097866167037017
  404. },
  405. "Component_[1411768194965246394]": {
  406. "$type": "EditorDisabledCompositionComponent",
  407. "Id": 1411768194965246394
  408. },
  409. "Component_[1663385921584959061]": {
  410. "$type": "EditorPendingCompositionComponent",
  411. "Id": 1663385921584959061
  412. },
  413. "Component_[16837091959608796917]": {
  414. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  415. "Id": 16837091959608796917,
  416. "Parent Entity": "ContainerEntity",
  417. "Transform Data": {
  418. "Translate": [
  419. 0.25711485743522644,
  420. 0.28554362058639526,
  421. -1.0362776517868042
  422. ],
  423. "Rotate": [
  424. -11.174627304077148,
  425. -12.125296592712402,
  426. -43.242713928222656
  427. ]
  428. }
  429. },
  430. "Component_[17148999990205098745]": {
  431. "$type": "EditorInspectorComponent",
  432. "Id": 17148999990205098745
  433. },
  434. "Component_[17941466025559499973]": {
  435. "$type": "EditorOnlyEntityComponent",
  436. "Id": 17941466025559499973
  437. },
  438. "Component_[7310719958678826723]": {
  439. "$type": "EditorEntitySortComponent",
  440. "Id": 7310719958678826723,
  441. "Child Entity Order": [
  442. "Instance_[1548645907238462]/ContainerEntity",
  443. "Instance_[394645333537663]/ContainerEntity",
  444. "Instance_[394658218439551]/ContainerEntity",
  445. "Instance_[396062672745343]/ContainerEntity",
  446. "Instance_[396054082810751]/ContainerEntity",
  447. "Instance_[396058377778047]/ContainerEntity",
  448. "Instance_[396105622418303]/ContainerEntity",
  449. "Instance_[396101327451007]/ContainerEntity",
  450. "Instance_[396109917385599]/ContainerEntity",
  451. "Instance_[396200111698815]/ContainerEntity",
  452. "Instance_[396195816731519]/ContainerEntity",
  453. "Instance_[396204406666111]/ContainerEntity",
  454. "Instance_[408745711170431]/ContainerEntity"
  455. ]
  456. },
  457. "Component_[8898839633465917423]": {
  458. "$type": "EditorEntityIconComponent",
  459. "Id": 8898839633465917423
  460. }
  461. }
  462. },
  463. "Entity_[396238766404479]": {
  464. "Id": "Entity_[396238766404479]",
  465. "Name": "AppleSet3",
  466. "Components": {
  467. "Component_[12045557113666511045]": {
  468. "$type": "EditorLockComponent",
  469. "Id": 12045557113666511045
  470. },
  471. "Component_[12208097866167037017]": {
  472. "$type": "EditorVisibilityComponent",
  473. "Id": 12208097866167037017
  474. },
  475. "Component_[1411768194965246394]": {
  476. "$type": "EditorDisabledCompositionComponent",
  477. "Id": 1411768194965246394
  478. },
  479. "Component_[1663385921584959061]": {
  480. "$type": "EditorPendingCompositionComponent",
  481. "Id": 1663385921584959061
  482. },
  483. "Component_[16837091959608796917]": {
  484. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  485. "Id": 16837091959608796917,
  486. "Parent Entity": "ContainerEntity",
  487. "Transform Data": {
  488. "Translate": [
  489. 0.011666902340948582,
  490. 0.1356474608182907,
  491. -0.279662549495697
  492. ],
  493. "Rotate": [
  494. -11.174627304077148,
  495. -12.125296592712402,
  496. -43.242713928222656
  497. ]
  498. }
  499. },
  500. "Component_[17148999990205098745]": {
  501. "$type": "EditorInspectorComponent",
  502. "Id": 17148999990205098745
  503. },
  504. "Component_[17941466025559499973]": {
  505. "$type": "EditorOnlyEntityComponent",
  506. "Id": 17941466025559499973
  507. },
  508. "Component_[7310719958678826723]": {
  509. "$type": "EditorEntitySortComponent",
  510. "Id": 7310719958678826723,
  511. "Child Entity Order": [
  512. "Instance_[1548645907238462]/ContainerEntity",
  513. "Instance_[394645333537663]/ContainerEntity",
  514. "Instance_[394658218439551]/ContainerEntity",
  515. "Instance_[396062672745343]/ContainerEntity",
  516. "Instance_[396054082810751]/ContainerEntity",
  517. "Instance_[396058377778047]/ContainerEntity",
  518. "Instance_[396105622418303]/ContainerEntity",
  519. "Instance_[396101327451007]/ContainerEntity",
  520. "Instance_[396109917385599]/ContainerEntity",
  521. "Instance_[396200111698815]/ContainerEntity",
  522. "Instance_[396195816731519]/ContainerEntity",
  523. "Instance_[396204406666111]/ContainerEntity",
  524. "Instance_[396251651306367]/ContainerEntity",
  525. "Instance_[396247356339071]/ContainerEntity",
  526. "Instance_[396243061371775]/ContainerEntity"
  527. ]
  528. },
  529. "Component_[8898839633465917423]": {
  530. "$type": "EditorEntityIconComponent",
  531. "Id": 8898839633465917423
  532. }
  533. }
  534. },
  535. "Entity_[396286011044735]": {
  536. "Id": "Entity_[396286011044735]",
  537. "Name": "AppleSet2",
  538. "Components": {
  539. "Component_[10224979700700263665]": {
  540. "$type": "EditorLockComponent",
  541. "Id": 10224979700700263665
  542. },
  543. "Component_[14002916326505929294]": {
  544. "$type": "EditorPendingCompositionComponent",
  545. "Id": 14002916326505929294
  546. },
  547. "Component_[14694928086455280572]": {
  548. "$type": "EditorVisibilityComponent",
  549. "Id": 14694928086455280572
  550. },
  551. "Component_[16521195961010385000]": {
  552. "$type": "EditorInspectorComponent",
  553. "Id": 16521195961010385000
  554. },
  555. "Component_[17062473746437336750]": {
  556. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  557. "Id": 17062473746437336750,
  558. "Parent Entity": "ContainerEntity",
  559. "Transform Data": {
  560. "Translate": [
  561. -0.5663347244262695,
  562. 0.27180975675582886,
  563. -0.36518192291259766
  564. ]
  565. }
  566. },
  567. "Component_[17134521475928377828]": {
  568. "$type": "EditorEntityIconComponent",
  569. "Id": 17134521475928377828
  570. },
  571. "Component_[2256767078962160090]": {
  572. "$type": "EditorOnlyEntityComponent",
  573. "Id": 2256767078962160090
  574. },
  575. "Component_[708520844852293383]": {
  576. "$type": "EditorEntitySortComponent",
  577. "Id": 708520844852293383,
  578. "Child Entity Order": [
  579. "Instance_[394692578177919]/ContainerEntity",
  580. "Instance_[394679693276031]/ContainerEntity",
  581. "Instance_[396294600979327]/ContainerEntity",
  582. "Instance_[396290306012031]/ContainerEntity"
  583. ]
  584. },
  585. "Component_[968826354313233377]": {
  586. "$type": "EditorDisabledCompositionComponent",
  587. "Id": 968826354313233377
  588. }
  589. }
  590. },
  591. "Entity_[396320370783103]": {
  592. "Id": "Entity_[396320370783103]",
  593. "Name": "AppleSet2",
  594. "Components": {
  595. "Component_[10224979700700263665]": {
  596. "$type": "EditorLockComponent",
  597. "Id": 10224979700700263665
  598. },
  599. "Component_[14002916326505929294]": {
  600. "$type": "EditorPendingCompositionComponent",
  601. "Id": 14002916326505929294
  602. },
  603. "Component_[14694928086455280572]": {
  604. "$type": "EditorVisibilityComponent",
  605. "Id": 14694928086455280572
  606. },
  607. "Component_[16521195961010385000]": {
  608. "$type": "EditorInspectorComponent",
  609. "Id": 16521195961010385000
  610. },
  611. "Component_[17062473746437336750]": {
  612. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  613. "Id": 17062473746437336750,
  614. "Parent Entity": "ContainerEntity",
  615. "Transform Data": {
  616. "Translate": [
  617. -0.45179086923599243,
  618. -0.22777631878852844,
  619. -1.1089260578155518
  620. ]
  621. }
  622. },
  623. "Component_[17134521475928377828]": {
  624. "$type": "EditorEntityIconComponent",
  625. "Id": 17134521475928377828
  626. },
  627. "Component_[2256767078962160090]": {
  628. "$type": "EditorOnlyEntityComponent",
  629. "Id": 2256767078962160090
  630. },
  631. "Component_[708520844852293383]": {
  632. "$type": "EditorEntitySortComponent",
  633. "Id": 708520844852293383,
  634. "Child Entity Order": [
  635. "Instance_[394692578177919]/ContainerEntity",
  636. "Instance_[394679693276031]/ContainerEntity",
  637. "Instance_[396294600979327]/ContainerEntity",
  638. "Instance_[396290306012031]/ContainerEntity",
  639. "Instance_[396328960717695]/ContainerEntity",
  640. "Instance_[396324665750399]/ContainerEntity"
  641. ]
  642. },
  643. "Component_[968826354313233377]": {
  644. "$type": "EditorDisabledCompositionComponent",
  645. "Id": 968826354313233377
  646. }
  647. }
  648. },
  649. "Entity_[408414998688639]": {
  650. "Id": "Entity_[408414998688639]",
  651. "Name": "AppleSet3",
  652. "Components": {
  653. "Component_[12045557113666511045]": {
  654. "$type": "EditorLockComponent",
  655. "Id": 12045557113666511045
  656. },
  657. "Component_[12208097866167037017]": {
  658. "$type": "EditorVisibilityComponent",
  659. "Id": 12208097866167037017
  660. },
  661. "Component_[1411768194965246394]": {
  662. "$type": "EditorDisabledCompositionComponent",
  663. "Id": 1411768194965246394
  664. },
  665. "Component_[1663385921584959061]": {
  666. "$type": "EditorPendingCompositionComponent",
  667. "Id": 1663385921584959061
  668. },
  669. "Component_[16837091959608796917]": {
  670. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  671. "Id": 16837091959608796917,
  672. "Parent Entity": "ContainerEntity",
  673. "Transform Data": {
  674. "Translate": [
  675. -0.2983303666114807,
  676. -0.03848613053560257,
  677. -0.8071976900100708
  678. ],
  679. "Rotate": [
  680. -14.87489128112793,
  681. -7.062954902648926,
  682. -65.1590347290039
  683. ]
  684. }
  685. },
  686. "Component_[17148999990205098745]": {
  687. "$type": "EditorInspectorComponent",
  688. "Id": 17148999990205098745
  689. },
  690. "Component_[17941466025559499973]": {
  691. "$type": "EditorOnlyEntityComponent",
  692. "Id": 17941466025559499973
  693. },
  694. "Component_[7310719958678826723]": {
  695. "$type": "EditorEntitySortComponent",
  696. "Id": 7310719958678826723,
  697. "Child Entity Order": [
  698. "Instance_[1548645907238462]/ContainerEntity",
  699. "Instance_[394645333537663]/ContainerEntity",
  700. "Instance_[394658218439551]/ContainerEntity",
  701. "Instance_[396062672745343]/ContainerEntity",
  702. "Instance_[396054082810751]/ContainerEntity",
  703. "Instance_[396058377778047]/ContainerEntity",
  704. "Instance_[408445063459711]/ContainerEntity",
  705. "Instance_[408496603067263]/ContainerEntity",
  706. "Instance_[408462243328895]/ContainerEntity"
  707. ]
  708. },
  709. "Component_[8898839633465917423]": {
  710. "$type": "EditorEntityIconComponent",
  711. "Id": 8898839633465917423
  712. }
  713. }
  714. },
  715. "Entity_[408419293655935]": {
  716. "Id": "Entity_[408419293655935]",
  717. "Name": "AppleSet3",
  718. "Components": {
  719. "Component_[12045557113666511045]": {
  720. "$type": "EditorLockComponent",
  721. "Id": 12045557113666511045
  722. },
  723. "Component_[12208097866167037017]": {
  724. "$type": "EditorVisibilityComponent",
  725. "Id": 12208097866167037017
  726. },
  727. "Component_[1411768194965246394]": {
  728. "$type": "EditorDisabledCompositionComponent",
  729. "Id": 1411768194965246394
  730. },
  731. "Component_[1663385921584959061]": {
  732. "$type": "EditorPendingCompositionComponent",
  733. "Id": 1663385921584959061
  734. },
  735. "Component_[16837091959608796917]": {
  736. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  737. "Id": 16837091959608796917,
  738. "Parent Entity": "ContainerEntity",
  739. "Transform Data": {
  740. "Translate": [
  741. 0.14315292239189148,
  742. -0.21936385333538055,
  743. -0.7293170690536499
  744. ],
  745. "Rotate": [
  746. -14.87489128112793,
  747. -7.062954902648926,
  748. -65.1590347290039
  749. ]
  750. }
  751. },
  752. "Component_[17148999990205098745]": {
  753. "$type": "EditorInspectorComponent",
  754. "Id": 17148999990205098745
  755. },
  756. "Component_[17941466025559499973]": {
  757. "$type": "EditorOnlyEntityComponent",
  758. "Id": 17941466025559499973
  759. },
  760. "Component_[7310719958678826723]": {
  761. "$type": "EditorEntitySortComponent",
  762. "Id": 7310719958678826723,
  763. "Child Entity Order": [
  764. "Instance_[1548645907238462]/ContainerEntity",
  765. "Instance_[394645333537663]/ContainerEntity",
  766. "Instance_[394658218439551]/ContainerEntity",
  767. "Instance_[408500898034559]/ContainerEntity",
  768. "Instance_[408513782936447]/ContainerEntity",
  769. "Instance_[408440768492415]/ContainerEntity"
  770. ]
  771. },
  772. "Component_[8898839633465917423]": {
  773. "$type": "EditorEntityIconComponent",
  774. "Id": 8898839633465917423
  775. }
  776. }
  777. },
  778. "Entity_[408423588623231]": {
  779. "Id": "Entity_[408423588623231]",
  780. "Name": "AppleSet2",
  781. "Components": {
  782. "Component_[10224979700700263665]": {
  783. "$type": "EditorLockComponent",
  784. "Id": 10224979700700263665
  785. },
  786. "Component_[14002916326505929294]": {
  787. "$type": "EditorPendingCompositionComponent",
  788. "Id": 14002916326505929294
  789. },
  790. "Component_[14694928086455280572]": {
  791. "$type": "EditorVisibilityComponent",
  792. "Id": 14694928086455280572
  793. },
  794. "Component_[16521195961010385000]": {
  795. "$type": "EditorInspectorComponent",
  796. "Id": 16521195961010385000
  797. },
  798. "Component_[17062473746437336750]": {
  799. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  800. "Id": 17062473746437336750,
  801. "Parent Entity": "ContainerEntity",
  802. "Transform Data": {
  803. "Translate": [
  804. -0.2536967992782593,
  805. 0.6028715372085571,
  806. -0.37653017044067383
  807. ],
  808. "Rotate": [
  809. 0.0,
  810. 0.0,
  811. -64.23583221435547
  812. ]
  813. }
  814. },
  815. "Component_[17134521475928377828]": {
  816. "$type": "EditorEntityIconComponent",
  817. "Id": 17134521475928377828
  818. },
  819. "Component_[2256767078962160090]": {
  820. "$type": "EditorOnlyEntityComponent",
  821. "Id": 2256767078962160090
  822. },
  823. "Component_[708520844852293383]": {
  824. "$type": "EditorEntitySortComponent",
  825. "Id": 708520844852293383,
  826. "Child Entity Order": [
  827. "Instance_[394692578177919]/ContainerEntity",
  828. "Instance_[394679693276031]/ContainerEntity",
  829. "Instance_[408479423198079]/ContainerEntity",
  830. "Instance_[408457948361599]/ContainerEntity"
  831. ]
  832. },
  833. "Component_[968826354313233377]": {
  834. "$type": "EditorDisabledCompositionComponent",
  835. "Id": 968826354313233377
  836. }
  837. }
  838. },
  839. "Entity_[408427883590527]": {
  840. "Id": "Entity_[408427883590527]",
  841. "Name": "AppleSet3",
  842. "Components": {
  843. "Component_[12045557113666511045]": {
  844. "$type": "EditorLockComponent",
  845. "Id": 12045557113666511045
  846. },
  847. "Component_[12208097866167037017]": {
  848. "$type": "EditorVisibilityComponent",
  849. "Id": 12208097866167037017
  850. },
  851. "Component_[1411768194965246394]": {
  852. "$type": "EditorDisabledCompositionComponent",
  853. "Id": 1411768194965246394
  854. },
  855. "Component_[1663385921584959061]": {
  856. "$type": "EditorPendingCompositionComponent",
  857. "Id": 1663385921584959061
  858. },
  859. "Component_[16837091959608796917]": {
  860. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  861. "Id": 16837091959608796917,
  862. "Parent Entity": "ContainerEntity",
  863. "Transform Data": {
  864. "Translate": [
  865. 0.19712185859680176,
  866. -0.07788310945034027,
  867. -0.2713385820388794
  868. ],
  869. "Rotate": [
  870. -15.806366920471191,
  871. 4.550546169281006,
  872. -105.6558609008789
  873. ]
  874. }
  875. },
  876. "Component_[17148999990205098745]": {
  877. "$type": "EditorInspectorComponent",
  878. "Id": 17148999990205098745
  879. },
  880. "Component_[17941466025559499973]": {
  881. "$type": "EditorOnlyEntityComponent",
  882. "Id": 17941466025559499973
  883. },
  884. "Component_[7310719958678826723]": {
  885. "$type": "EditorEntitySortComponent",
  886. "Id": 7310719958678826723,
  887. "Child Entity Order": [
  888. "Instance_[1548645907238462]/ContainerEntity",
  889. "Instance_[394645333537663]/ContainerEntity",
  890. "Instance_[394658218439551]/ContainerEntity",
  891. "Instance_[396062672745343]/ContainerEntity",
  892. "Instance_[396054082810751]/ContainerEntity",
  893. "Instance_[396058377778047]/ContainerEntity",
  894. "Instance_[396105622418303]/ContainerEntity",
  895. "Instance_[396101327451007]/ContainerEntity",
  896. "Instance_[396109917385599]/ContainerEntity",
  897. "Instance_[396200111698815]/ContainerEntity",
  898. "Instance_[396195816731519]/ContainerEntity",
  899. "Instance_[396204406666111]/ContainerEntity",
  900. "Instance_[396251651306367]/ContainerEntity",
  901. "Instance_[396247356339071]/ContainerEntity",
  902. "Instance_[396243061371775]/ContainerEntity",
  903. "Instance_[408470833263487]/ContainerEntity",
  904. "Instance_[408492308099967]/ContainerEntity",
  905. "Instance_[408453653394303]/ContainerEntity",
  906. "Instance_[408784365876095]/ContainerEntity"
  907. ]
  908. },
  909. "Component_[8898839633465917423]": {
  910. "$type": "EditorEntityIconComponent",
  911. "Id": 8898839633465917423
  912. }
  913. }
  914. },
  915. "Entity_[408432178557823]": {
  916. "Id": "Entity_[408432178557823]",
  917. "Name": "AppleSet3",
  918. "Components": {
  919. "Component_[12045557113666511045]": {
  920. "$type": "EditorLockComponent",
  921. "Id": 12045557113666511045
  922. },
  923. "Component_[12208097866167037017]": {
  924. "$type": "EditorVisibilityComponent",
  925. "Id": 12208097866167037017
  926. },
  927. "Component_[1411768194965246394]": {
  928. "$type": "EditorDisabledCompositionComponent",
  929. "Id": 1411768194965246394
  930. },
  931. "Component_[1663385921584959061]": {
  932. "$type": "EditorPendingCompositionComponent",
  933. "Id": 1663385921584959061
  934. },
  935. "Component_[16837091959608796917]": {
  936. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  937. "Id": 16837091959608796917,
  938. "Parent Entity": "ContainerEntity",
  939. "Transform Data": {
  940. "Translate": [
  941. 0.3657611906528473,
  942. 0.0885118693113327,
  943. -0.9973275065422058
  944. ],
  945. "Rotate": [
  946. -15.806366920471191,
  947. 4.550546169281006,
  948. -105.6558609008789
  949. ]
  950. }
  951. },
  952. "Component_[17148999990205098745]": {
  953. "$type": "EditorInspectorComponent",
  954. "Id": 17148999990205098745
  955. },
  956. "Component_[17941466025559499973]": {
  957. "$type": "EditorOnlyEntityComponent",
  958. "Id": 17941466025559499973
  959. },
  960. "Component_[7310719958678826723]": {
  961. "$type": "EditorEntitySortComponent",
  962. "Id": 7310719958678826723,
  963. "Child Entity Order": [
  964. "Instance_[1548645907238462]/ContainerEntity",
  965. "Instance_[394645333537663]/ContainerEntity",
  966. "Instance_[394658218439551]/ContainerEntity",
  967. "Instance_[396062672745343]/ContainerEntity",
  968. "Instance_[396054082810751]/ContainerEntity",
  969. "Instance_[396058377778047]/ContainerEntity",
  970. "Instance_[396105622418303]/ContainerEntity",
  971. "Instance_[396101327451007]/ContainerEntity",
  972. "Instance_[396109917385599]/ContainerEntity",
  973. "Instance_[396200111698815]/ContainerEntity",
  974. "Instance_[396195816731519]/ContainerEntity",
  975. "Instance_[396204406666111]/ContainerEntity",
  976. "Instance_[408483718165375]/ContainerEntity",
  977. "Instance_[408466538296191]/ContainerEntity",
  978. "Instance_[408449358427007]/ContainerEntity",
  979. "Instance_[408771480974207]/ContainerEntity"
  980. ]
  981. },
  982. "Component_[8898839633465917423]": {
  983. "$type": "EditorEntityIconComponent",
  984. "Id": 8898839633465917423
  985. }
  986. }
  987. },
  988. "Entity_[408436473525119]": {
  989. "Id": "Entity_[408436473525119]",
  990. "Name": "AppleSet3",
  991. "Components": {
  992. "Component_[12045557113666511045]": {
  993. "$type": "EditorLockComponent",
  994. "Id": 12045557113666511045
  995. },
  996. "Component_[12208097866167037017]": {
  997. "$type": "EditorVisibilityComponent",
  998. "Id": 12208097866167037017
  999. },
  1000. "Component_[1411768194965246394]": {
  1001. "$type": "EditorDisabledCompositionComponent",
  1002. "Id": 1411768194965246394
  1003. },
  1004. "Component_[1663385921584959061]": {
  1005. "$type": "EditorPendingCompositionComponent",
  1006. "Id": 1663385921584959061
  1007. },
  1008. "Component_[16837091959608796917]": {
  1009. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1010. "Id": 16837091959608796917,
  1011. "Parent Entity": "ContainerEntity",
  1012. "Transform Data": {
  1013. "Translate": [
  1014. -0.008657244965434074,
  1015. -0.3542463779449463,
  1016. -1.0731544494628906
  1017. ],
  1018. "Rotate": [
  1019. -15.806366920471191,
  1020. 4.550546169281006,
  1021. -105.6558609008789
  1022. ]
  1023. }
  1024. },
  1025. "Component_[17148999990205098745]": {
  1026. "$type": "EditorInspectorComponent",
  1027. "Id": 17148999990205098745
  1028. },
  1029. "Component_[17941466025559499973]": {
  1030. "$type": "EditorOnlyEntityComponent",
  1031. "Id": 17941466025559499973
  1032. },
  1033. "Component_[7310719958678826723]": {
  1034. "$type": "EditorEntitySortComponent",
  1035. "Id": 7310719958678826723,
  1036. "Child Entity Order": [
  1037. "Instance_[1548645907238462]/ContainerEntity",
  1038. "Instance_[394645333537663]/ContainerEntity",
  1039. "Instance_[394658218439551]/ContainerEntity",
  1040. "Instance_[396062672745343]/ContainerEntity",
  1041. "Instance_[396054082810751]/ContainerEntity",
  1042. "Instance_[396058377778047]/ContainerEntity",
  1043. "Instance_[396105622418303]/ContainerEntity",
  1044. "Instance_[396101327451007]/ContainerEntity",
  1045. "Instance_[396109917385599]/ContainerEntity",
  1046. "Instance_[408475128230783]/ContainerEntity",
  1047. "Instance_[408488013132671]/ContainerEntity",
  1048. "Instance_[408509487969151]/ContainerEntity"
  1049. ]
  1050. },
  1051. "Component_[8898839633465917423]": {
  1052. "$type": "EditorEntityIconComponent",
  1053. "Id": 8898839633465917423
  1054. }
  1055. }
  1056. },
  1057. "Entity_[408698466530175]": {
  1058. "Id": "Entity_[408698466530175]",
  1059. "Name": "AppleSet3",
  1060. "Components": {
  1061. "Component_[12045557113666511045]": {
  1062. "$type": "EditorLockComponent",
  1063. "Id": 12045557113666511045
  1064. },
  1065. "Component_[12208097866167037017]": {
  1066. "$type": "EditorVisibilityComponent",
  1067. "Id": 12208097866167037017
  1068. },
  1069. "Component_[1411768194965246394]": {
  1070. "$type": "EditorDisabledCompositionComponent",
  1071. "Id": 1411768194965246394
  1072. },
  1073. "Component_[1663385921584959061]": {
  1074. "$type": "EditorPendingCompositionComponent",
  1075. "Id": 1663385921584959061
  1076. },
  1077. "Component_[16837091959608796917]": {
  1078. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1079. "Id": 16837091959608796917,
  1080. "Parent Entity": "ContainerEntity",
  1081. "Transform Data": {
  1082. "Translate": [
  1083. -0.2882833182811737,
  1084. -0.08162898570299149,
  1085. -1.1785821914672852
  1086. ],
  1087. "Rotate": [
  1088. -15.806366920471191,
  1089. 4.550546169281006,
  1090. -105.6558609008789
  1091. ]
  1092. }
  1093. },
  1094. "Component_[17148999990205098745]": {
  1095. "$type": "EditorInspectorComponent",
  1096. "Id": 17148999990205098745
  1097. },
  1098. "Component_[17941466025559499973]": {
  1099. "$type": "EditorOnlyEntityComponent",
  1100. "Id": 17941466025559499973
  1101. },
  1102. "Component_[7310719958678826723]": {
  1103. "$type": "EditorEntitySortComponent",
  1104. "Id": 7310719958678826723,
  1105. "Child Entity Order": [
  1106. "Instance_[1548645907238462]/ContainerEntity",
  1107. "Instance_[394645333537663]/ContainerEntity",
  1108. "Instance_[394658218439551]/ContainerEntity",
  1109. "Instance_[396062672745343]/ContainerEntity",
  1110. "Instance_[396054082810751]/ContainerEntity",
  1111. "Instance_[396058377778047]/ContainerEntity",
  1112. "Instance_[396105622418303]/ContainerEntity",
  1113. "Instance_[396101327451007]/ContainerEntity",
  1114. "Instance_[396109917385599]/ContainerEntity",
  1115. "Instance_[396200111698815]/ContainerEntity",
  1116. "Instance_[396195816731519]/ContainerEntity",
  1117. "Instance_[396204406666111]/ContainerEntity",
  1118. "Instance_[408483718165375]/ContainerEntity",
  1119. "Instance_[408466538296191]/ContainerEntity",
  1120. "Instance_[408449358427007]/ContainerEntity",
  1121. "Instance_[408711351432063]/ContainerEntity",
  1122. "Instance_[408702761497471]/ContainerEntity",
  1123. "Instance_[408707056464767]/ContainerEntity"
  1124. ]
  1125. },
  1126. "Component_[8898839633465917423]": {
  1127. "$type": "EditorEntityIconComponent",
  1128. "Id": 8898839633465917423
  1129. }
  1130. }
  1131. },
  1132. "Entity_[691956415503188]": {
  1133. "Id": "Entity_[691956415503188]",
  1134. "Name": "AppleTree",
  1135. "Components": {
  1136. "Component_[10483984395814518873]": {
  1137. "$type": "AZ::Render::EditorMeshComponent",
  1138. "Id": 10483984395814518873,
  1139. "Controller": {
  1140. "Configuration": {
  1141. "ModelAsset": {
  1142. "assetId": {
  1143. "guid": "{3B449F7F-C3DE-561D-AA71-7A26EFD48957}",
  1144. "subId": 280458798
  1145. },
  1146. "assetHint": "assets/apple_tree/appletree.azmodel"
  1147. },
  1148. "SortKey": 3,
  1149. "LodType": 1
  1150. }
  1151. }
  1152. },
  1153. "Component_[10868288372941810356]": {
  1154. "$type": "EditorVisibilityComponent",
  1155. "Id": 10868288372941810356
  1156. },
  1157. "Component_[12444622250145591703]": {
  1158. "$type": "{27F1E1A1-8D9D-4C3B-BD3A-AFB9762449C0} TransformComponent",
  1159. "Id": 12444622250145591703,
  1160. "Parent Entity": "ContainerEntity",
  1161. "IsStatic": true
  1162. },
  1163. "Component_[15156623641462766583]": {
  1164. "$type": "EditorLockComponent",
  1165. "Id": 15156623641462766583
  1166. },
  1167. "Component_[15752591005564428774]": {
  1168. "$type": "EditorOnlyEntityComponent",
  1169. "Id": 15752591005564428774
  1170. },
  1171. "Component_[2232052990511423151]": {
  1172. "$type": "EditorEntityIconComponent",
  1173. "Id": 2232052990511423151
  1174. },
  1175. "Component_[3894251219152098730]": {
  1176. "$type": "EditorMaterialComponent",
  1177. "Id": 3894251219152098730,
  1178. "Controller": {
  1179. "Configuration": {
  1180. "materials": [
  1181. {
  1182. "Key": {
  1183. "materialSlotStableId": 199226484
  1184. },
  1185. "Value": {
  1186. "MaterialAsset": {
  1187. "assetId": {
  1188. "guid": "{55339E98-54B6-5D38-B182-262882507562}"
  1189. },
  1190. "assetHint": "assets/apple_tree/appletree_branchmat.azmaterial"
  1191. }
  1192. }
  1193. },
  1194. {
  1195. "Key": {
  1196. "materialSlotStableId": 924759392
  1197. },
  1198. "Value": {
  1199. "MaterialAsset": {
  1200. "assetId": {
  1201. "guid": "{A9A7956A-79C1-53A1-95C1-342AC7C3E8FB}"
  1202. },
  1203. "assetHint": "assets/apple_tree/appletree_leaf_sss_mat.azmaterial"
  1204. },
  1205. "PropertyOverrides": {
  1206. "baseColor.color": {
  1207. "$type": "Color",
  1208. "Value": [
  1209. 0.48235294222831726,
  1210. 0.48235294222831726,
  1211. 0.48235294222831726,
  1212. 1.0
  1213. ]
  1214. }
  1215. }
  1216. }
  1217. },
  1218. {
  1219. "Key": {
  1220. "materialSlotStableId": 1288673165
  1221. },
  1222. "Value": {
  1223. "MaterialAsset": {
  1224. "assetId": {
  1225. "guid": "{B03382D7-0965-53E2-A0CE-C526142FAFB8}"
  1226. },
  1227. "assetHint": "assets/apple_tree/appletree_treemat.azmaterial"
  1228. }
  1229. }
  1230. },
  1231. {
  1232. "Key": {
  1233. "lodIndex": 0,
  1234. "materialSlotStableId": 199226484
  1235. },
  1236. "Value": {
  1237. "MaterialAsset": {
  1238. "assetId": {
  1239. "guid": "{55339E98-54B6-5D38-B182-262882507562}"
  1240. },
  1241. "assetHint": "assets/apple_tree/appletree_branchmat.azmaterial"
  1242. }
  1243. }
  1244. },
  1245. {
  1246. "Key": {
  1247. "lodIndex": 0,
  1248. "materialSlotStableId": 924759392
  1249. },
  1250. "Value": {
  1251. "MaterialAsset": {
  1252. "assetId": {
  1253. "guid": "{A9A7956A-79C1-53A1-95C1-342AC7C3E8FB}"
  1254. },
  1255. "assetHint": "assets/apple_tree/appletree_leaf_sss_mat.azmaterial"
  1256. }
  1257. }
  1258. },
  1259. {
  1260. "Key": {
  1261. "lodIndex": 0,
  1262. "materialSlotStableId": 1288673165
  1263. },
  1264. "Value": {
  1265. "MaterialAsset": {
  1266. "assetId": {
  1267. "guid": "{B03382D7-0965-53E2-A0CE-C526142FAFB8}"
  1268. },
  1269. "assetHint": "assets/apple_tree/appletree_treemat.azmaterial"
  1270. }
  1271. }
  1272. },
  1273. {
  1274. "Key": {
  1275. "lodIndex": 1,
  1276. "materialSlotStableId": 199226484
  1277. },
  1278. "Value": {
  1279. "MaterialAsset": {
  1280. "assetId": {
  1281. "guid": "{55339E98-54B6-5D38-B182-262882507562}"
  1282. },
  1283. "assetHint": "assets/apple_tree/appletree_branchmat.azmaterial"
  1284. }
  1285. }
  1286. },
  1287. {
  1288. "Key": {
  1289. "lodIndex": 1,
  1290. "materialSlotStableId": 924759392
  1291. },
  1292. "Value": {
  1293. "MaterialAsset": {
  1294. "assetId": {
  1295. "guid": "{A9A7956A-79C1-53A1-95C1-342AC7C3E8FB}"
  1296. },
  1297. "assetHint": "assets/apple_tree/appletree_leaf_sss_mat.azmaterial"
  1298. }
  1299. }
  1300. },
  1301. {
  1302. "Key": {
  1303. "lodIndex": 1,
  1304. "materialSlotStableId": 1288673165
  1305. },
  1306. "Value": {
  1307. "MaterialAsset": {
  1308. "assetId": {
  1309. "guid": "{B03382D7-0965-53E2-A0CE-C526142FAFB8}"
  1310. },
  1311. "assetHint": "assets/apple_tree/appletree_treemat.azmaterial"
  1312. }
  1313. }
  1314. },
  1315. {
  1316. "Key": {
  1317. "lodIndex": 2,
  1318. "materialSlotStableId": 199226484
  1319. },
  1320. "Value": {
  1321. "MaterialAsset": {
  1322. "assetId": {
  1323. "guid": "{5751E3F7-A665-52B0-A371-D3A7D37C6CC3}"
  1324. },
  1325. "assetHint": "assets/apple_tree/appletree_branch_basemat.azmaterial"
  1326. }
  1327. }
  1328. },
  1329. {
  1330. "Key": {
  1331. "lodIndex": 2,
  1332. "materialSlotStableId": 924759392
  1333. },
  1334. "Value": {
  1335. "MaterialAsset": {
  1336. "assetId": {
  1337. "guid": "{EB582A15-08B3-59E8-870C-59249E92D948}"
  1338. },
  1339. "assetHint": "assets/apple_tree/appletree_leaf_basemat.azmaterial"
  1340. }
  1341. }
  1342. },
  1343. {
  1344. "Key": {
  1345. "lodIndex": 2,
  1346. "materialSlotStableId": 1288673165
  1347. },
  1348. "Value": {
  1349. "MaterialAsset": {
  1350. "assetId": {
  1351. "guid": "{A2C3ED2A-B141-5FAB-B07D-147EFFE5F034}"
  1352. },
  1353. "assetHint": "assets/apple_tree/appletree_tree_basemat.azmaterial"
  1354. }
  1355. }
  1356. },
  1357. {
  1358. "Key": {
  1359. "lodIndex": 3,
  1360. "materialSlotStableId": 199226484
  1361. },
  1362. "Value": {
  1363. "MaterialAsset": {
  1364. "assetId": {
  1365. "guid": "{5751E3F7-A665-52B0-A371-D3A7D37C6CC3}"
  1366. },
  1367. "assetHint": "assets/apple_tree/appletree_branch_basemat.azmaterial"
  1368. }
  1369. }
  1370. },
  1371. {
  1372. "Key": {
  1373. "lodIndex": 3,
  1374. "materialSlotStableId": 924759392
  1375. },
  1376. "Value": {
  1377. "MaterialAsset": {
  1378. "assetId": {
  1379. "guid": "{EB582A15-08B3-59E8-870C-59249E92D948}"
  1380. },
  1381. "assetHint": "assets/apple_tree/appletree_leaf_basemat.azmaterial"
  1382. }
  1383. }
  1384. },
  1385. {
  1386. "Key": {
  1387. "lodIndex": 3,
  1388. "materialSlotStableId": 1288673165
  1389. },
  1390. "Value": {
  1391. "MaterialAsset": {
  1392. "assetId": {
  1393. "guid": "{A2C3ED2A-B141-5FAB-B07D-147EFFE5F034}"
  1394. },
  1395. "assetHint": "assets/apple_tree/appletree_tree_basemat.azmaterial"
  1396. }
  1397. }
  1398. },
  1399. {
  1400. "Key": {
  1401. "lodIndex": 4,
  1402. "materialSlotStableId": 199226484
  1403. },
  1404. "Value": {
  1405. "MaterialAsset": {
  1406. "assetId": {
  1407. "guid": "{5751E3F7-A665-52B0-A371-D3A7D37C6CC3}"
  1408. },
  1409. "assetHint": "assets/apple_tree/appletree_branch_basemat.azmaterial"
  1410. }
  1411. }
  1412. },
  1413. {
  1414. "Key": {
  1415. "lodIndex": 4,
  1416. "materialSlotStableId": 924759392
  1417. },
  1418. "Value": {
  1419. "MaterialAsset": {
  1420. "assetId": {
  1421. "guid": "{A9A7956A-79C1-53A1-95C1-342AC7C3E8FB}"
  1422. },
  1423. "assetHint": "assets/apple_tree/appletree_leaf_sss_mat.azmaterial"
  1424. }
  1425. }
  1426. },
  1427. {
  1428. "Key": {
  1429. "lodIndex": 4,
  1430. "materialSlotStableId": 1288673165
  1431. },
  1432. "Value": {
  1433. "MaterialAsset": {
  1434. "assetId": {
  1435. "guid": "{A2C3ED2A-B141-5FAB-B07D-147EFFE5F034}"
  1436. },
  1437. "assetHint": "assets/apple_tree/appletree_tree_basemat.azmaterial"
  1438. }
  1439. }
  1440. }
  1441. ]
  1442. }
  1443. },
  1444. "materialSlotsByLodEnabled": true
  1445. },
  1446. "Component_[5042179235701765609]": {
  1447. "$type": "EditorEntitySortComponent",
  1448. "Id": 5042179235701765609
  1449. },
  1450. "Component_[546308243281095224]": {
  1451. "$type": "EditorDisabledCompositionComponent",
  1452. "Id": 546308243281095224
  1453. },
  1454. "Component_[6111505743688272735]": {
  1455. "$type": "EditorInspectorComponent",
  1456. "Id": 6111505743688272735,
  1457. "ComponentOrderEntryArray": [
  1458. {
  1459. "ComponentId": 12444622250145591703
  1460. },
  1461. {
  1462. "ComponentId": 10483984395814518873,
  1463. "SortIndex": 1
  1464. },
  1465. {
  1466. "ComponentId": 17286267979684003150,
  1467. "SortIndex": 2
  1468. }
  1469. ]
  1470. },
  1471. "Component_[6268934976006756844]": {
  1472. "$type": "EditorColliderComponent",
  1473. "Id": 6268934976006756844,
  1474. "ColliderConfiguration": {
  1475. "MaterialSlots": {
  1476. "Slots": [
  1477. {
  1478. "Name": "Entire object"
  1479. }
  1480. ]
  1481. }
  1482. },
  1483. "ShapeConfiguration": {
  1484. "ShapeType": 3,
  1485. "Cylinder": {
  1486. "Configuration": {
  1487. "Scale": [
  1488. 0.8999999761581421,
  1489. 0.8999999761581421,
  1490. 0.8999999761581421
  1491. ],
  1492. "CookedData": "TlhTAUNWWE0NAAAAAAAAAElDRQFDTEhMCQAAAAwAAAASAAAACAAAACQAAADLzMy9rVwxvgAAAMDLzMy9rVwxvgAAAEDNzEy+8jCWsgAAAEDNzEy+8jCWsgAAAMDPzMy9rFwxPgAAAEDPzMy9rFwxPgAAAMDMzMw9rVwxPgAAAMDNzEw+AAAAAAAAAMDQzMw9q1wxvgAAAMDMzMw9rVwxPgAAAEDNzEw+AAAAAAAAAEDQzMw9q1wxvgAAAEAAAAAAAAAAAAAAgL8AAADAAAAGAdezXb8BAAC/AAAAAKxcMb4GAAQG2LNdv/7//z4AAAAArFwxvgoABAf//5+zAACAPwAAAACsXDG+DgAEANezXT8AAAA/AAAAAKtcMb4SAAQC//8fNAAAgL8AAAAArFwxvhYABATXs10//v//vgAAAACsXDG+GgAEBAAAAAAAAAAAAACAPwAAAMAeAAYABgcIAAMFAAECAwQFAwIGBQQJBgkKBwsBAAgLCAcKCwoJBAIBAAQABgAFAAEAAgADAQUBBwECAgMCBwMHAwQEBwQGBQcFBgYHAAEFAQUHAQIHAAECAgMHAAIDAAMEAAQGAAUGAwQHBAYHBQYHAAAAAM3MTL6tXDG+AAAAwM3MTD6tXDE+AAAAQJzV1D7Exg4/MbNFrYeIiC8xs0WtxMYOP6uqKiOHiIgvq6oqI/wF4zsZLoywYJoRL8f1GTIAAIC/q1wxPobWAT6G1gE+AAAAQA==",
  1493. "Type": 1
  1494. },
  1495. "Subdivision": 6,
  1496. "Height": 4.0,
  1497. "Radius": 0.20000000298023224
  1498. }
  1499. }
  1500. },
  1501. "Component_[8148146872807561086]": {
  1502. "$type": "EditorPendingCompositionComponent",
  1503. "Id": 8148146872807561086
  1504. }
  1505. }
  1506. }
  1507. },
  1508. "Instances": {
  1509. "Instance_[1548645907238462]": {
  1510. "Source": "Prefabs/Apple.prefab",
  1511. "Patches": [
  1512. {
  1513. "op": "replace",
  1514. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1515. "value": "../Entity_[394671103341439]"
  1516. },
  1517. {
  1518. "op": "replace",
  1519. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1520. "value": 0.6402419805526733
  1521. },
  1522. {
  1523. "op": "replace",
  1524. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1525. "value": 0.06055593490600586
  1526. },
  1527. {
  1528. "op": "replace",
  1529. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1530. "value": 2.1406707763671875
  1531. },
  1532. {
  1533. "op": "replace",
  1534. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1535. "value": 62.772701263427734
  1536. },
  1537. {
  1538. "op": "replace",
  1539. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1540. "value": 0.8999999761581421
  1541. },
  1542. {
  1543. "op": "replace",
  1544. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1545. "value": 0.8999999761581421
  1546. },
  1547. {
  1548. "op": "replace",
  1549. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1550. "value": 0.8999999761581421
  1551. }
  1552. ]
  1553. },
  1554. "Instance_[394645333537663]": {
  1555. "Source": "Prefabs/Apple.prefab",
  1556. "Patches": [
  1557. {
  1558. "op": "replace",
  1559. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1560. "value": "../Entity_[394671103341439]"
  1561. },
  1562. {
  1563. "op": "replace",
  1564. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1565. "value": 0.6034330725669861
  1566. },
  1567. {
  1568. "op": "replace",
  1569. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1570. "value": -0.010982632637023926
  1571. },
  1572. {
  1573. "op": "replace",
  1574. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1575. "value": 2.1406707763671875
  1576. },
  1577. {
  1578. "op": "replace",
  1579. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1580. "value": -41.693355560302734
  1581. },
  1582. {
  1583. "op": "replace",
  1584. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1585. "value": -0.4240433871746063
  1586. },
  1587. {
  1588. "op": "replace",
  1589. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1590. "value": -177.46250915527344
  1591. },
  1592. {
  1593. "op": "replace",
  1594. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1595. "value": 0.8999999761581421
  1596. },
  1597. {
  1598. "op": "replace",
  1599. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1600. "value": 0.8999999761581421
  1601. },
  1602. {
  1603. "op": "replace",
  1604. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1605. "value": 0.8999999761581421
  1606. }
  1607. ]
  1608. },
  1609. "Instance_[394658218439551]": {
  1610. "Source": "Prefabs/Apple.prefab",
  1611. "Patches": [
  1612. {
  1613. "op": "replace",
  1614. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1615. "value": "../Entity_[394671103341439]"
  1616. },
  1617. {
  1618. "op": "replace",
  1619. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1620. "value": 0.5637900829315186
  1621. },
  1622. {
  1623. "op": "replace",
  1624. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1625. "value": 0.039330966770648956
  1626. },
  1627. {
  1628. "op": "replace",
  1629. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1630. "value": 2.142101526260376
  1631. },
  1632. {
  1633. "op": "replace",
  1634. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1635. "value": -10.145334243774414
  1636. },
  1637. {
  1638. "op": "replace",
  1639. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1640. "value": 34.67568588256836
  1641. },
  1642. {
  1643. "op": "replace",
  1644. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1645. "value": -136.8233184814453
  1646. },
  1647. {
  1648. "op": "replace",
  1649. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1650. "value": 0.8999999761581421
  1651. },
  1652. {
  1653. "op": "replace",
  1654. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1655. "value": 0.8999999761581421
  1656. },
  1657. {
  1658. "op": "replace",
  1659. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1660. "value": 0.8999999761581421
  1661. }
  1662. ]
  1663. },
  1664. "Instance_[394679693276031]": {
  1665. "Source": "Prefabs/Apple.prefab",
  1666. "Patches": [
  1667. {
  1668. "op": "replace",
  1669. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1670. "value": "../Entity_[394718347981695]"
  1671. },
  1672. {
  1673. "op": "replace",
  1674. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1675. "value": 0.7402406334877014
  1676. },
  1677. {
  1678. "op": "replace",
  1679. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1680. "value": -0.17920494079589844
  1681. },
  1682. {
  1683. "op": "replace",
  1684. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1685. "value": 1.7406708002090454
  1686. },
  1687. {
  1688. "op": "replace",
  1689. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1690. "value": 62.772701263427734
  1691. },
  1692. {
  1693. "op": "replace",
  1694. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1695. "value": 0.8999999761581421
  1696. },
  1697. {
  1698. "op": "replace",
  1699. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1700. "value": 0.8999999761581421
  1701. },
  1702. {
  1703. "op": "replace",
  1704. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1705. "value": 0.8999999761581421
  1706. }
  1707. ]
  1708. },
  1709. "Instance_[394692578177919]": {
  1710. "Source": "Prefabs/Apple.prefab",
  1711. "Patches": [
  1712. {
  1713. "op": "replace",
  1714. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1715. "value": "../Entity_[394718347981695]"
  1716. },
  1717. {
  1718. "op": "replace",
  1719. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1720. "value": 0.5974910259246826
  1721. },
  1722. {
  1723. "op": "replace",
  1724. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1725. "value": 0.0030963122844696045
  1726. },
  1727. {
  1728. "op": "replace",
  1729. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1730. "value": 1.674778699874878
  1731. },
  1732. {
  1733. "op": "replace",
  1734. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1735. "value": 16.596332550048828
  1736. },
  1737. {
  1738. "op": "replace",
  1739. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1740. "value": 13.519903182983398
  1741. },
  1742. {
  1743. "op": "replace",
  1744. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1745. "value": 59.38729476928711
  1746. },
  1747. {
  1748. "op": "replace",
  1749. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1750. "value": 0.8999999761581421
  1751. },
  1752. {
  1753. "op": "replace",
  1754. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1755. "value": 0.8999999761581421
  1756. },
  1757. {
  1758. "op": "replace",
  1759. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1760. "value": 0.8999999761581421
  1761. }
  1762. ]
  1763. },
  1764. "Instance_[394705463079807]": {
  1765. "Source": "Prefabs/Apple.prefab",
  1766. "Patches": [
  1767. {
  1768. "op": "replace",
  1769. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1770. "value": "../ContainerEntity"
  1771. },
  1772. {
  1773. "op": "replace",
  1774. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1775. "value": 0.3258933424949646
  1776. },
  1777. {
  1778. "op": "replace",
  1779. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1780. "value": -0.15160593390464783
  1781. },
  1782. {
  1783. "op": "replace",
  1784. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1785. "value": 1.9105675220489502
  1786. },
  1787. {
  1788. "op": "replace",
  1789. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1790. "value": 62.772701263427734
  1791. },
  1792. {
  1793. "op": "replace",
  1794. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1795. "value": 0.8999999761581421
  1796. },
  1797. {
  1798. "op": "replace",
  1799. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1800. "value": 0.8999999761581421
  1801. },
  1802. {
  1803. "op": "replace",
  1804. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1805. "value": 0.8999999761581421
  1806. }
  1807. ]
  1808. },
  1809. "Instance_[396054082810751]": {
  1810. "Source": "Prefabs/Apple.prefab",
  1811. "Patches": [
  1812. {
  1813. "op": "replace",
  1814. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1815. "value": "../Entity_[396049787843455]"
  1816. },
  1817. {
  1818. "op": "replace",
  1819. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1820. "value": 0.5637900829315186
  1821. },
  1822. {
  1823. "op": "replace",
  1824. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1825. "value": 0.039330966770648956
  1826. },
  1827. {
  1828. "op": "replace",
  1829. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1830. "value": 2.142101526260376
  1831. },
  1832. {
  1833. "op": "replace",
  1834. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1835. "value": -10.145334243774414
  1836. },
  1837. {
  1838. "op": "replace",
  1839. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1840. "value": 34.67568588256836
  1841. },
  1842. {
  1843. "op": "replace",
  1844. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1845. "value": -136.8233184814453
  1846. },
  1847. {
  1848. "op": "replace",
  1849. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1850. "value": 0.8999999761581421
  1851. },
  1852. {
  1853. "op": "replace",
  1854. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1855. "value": 0.8999999761581421
  1856. },
  1857. {
  1858. "op": "replace",
  1859. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1860. "value": 0.8999999761581421
  1861. }
  1862. ]
  1863. },
  1864. "Instance_[396058377778047]": {
  1865. "Source": "Prefabs/Apple.prefab",
  1866. "Patches": [
  1867. {
  1868. "op": "replace",
  1869. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1870. "value": "../Entity_[396049787843455]"
  1871. },
  1872. {
  1873. "op": "replace",
  1874. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1875. "value": 0.6034330725669861
  1876. },
  1877. {
  1878. "op": "replace",
  1879. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1880. "value": -0.010982632637023926
  1881. },
  1882. {
  1883. "op": "replace",
  1884. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1885. "value": 2.1406707763671875
  1886. },
  1887. {
  1888. "op": "replace",
  1889. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1890. "value": -41.693355560302734
  1891. },
  1892. {
  1893. "op": "replace",
  1894. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1895. "value": -0.4240433871746063
  1896. },
  1897. {
  1898. "op": "replace",
  1899. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1900. "value": -177.46250915527344
  1901. },
  1902. {
  1903. "op": "replace",
  1904. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1905. "value": 0.8999999761581421
  1906. },
  1907. {
  1908. "op": "replace",
  1909. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1910. "value": 0.8999999761581421
  1911. },
  1912. {
  1913. "op": "replace",
  1914. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1915. "value": 0.8999999761581421
  1916. }
  1917. ]
  1918. },
  1919. "Instance_[396062672745343]": {
  1920. "Source": "Prefabs/Apple.prefab",
  1921. "Patches": [
  1922. {
  1923. "op": "replace",
  1924. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1925. "value": "../Entity_[396049787843455]"
  1926. },
  1927. {
  1928. "op": "replace",
  1929. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1930. "value": 0.6402419805526733
  1931. },
  1932. {
  1933. "op": "replace",
  1934. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1935. "value": 0.06055593490600586
  1936. },
  1937. {
  1938. "op": "replace",
  1939. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1940. "value": 2.1406707763671875
  1941. },
  1942. {
  1943. "op": "replace",
  1944. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1945. "value": 62.772701263427734
  1946. },
  1947. {
  1948. "op": "replace",
  1949. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  1950. "value": 0.8999999761581421
  1951. },
  1952. {
  1953. "op": "replace",
  1954. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  1955. "value": 0.8999999761581421
  1956. },
  1957. {
  1958. "op": "replace",
  1959. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  1960. "value": 0.8999999761581421
  1961. }
  1962. ]
  1963. },
  1964. "Instance_[396101327451007]": {
  1965. "Source": "Prefabs/Apple.prefab",
  1966. "Patches": [
  1967. {
  1968. "op": "replace",
  1969. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1970. "value": "../Entity_[396097032483711]"
  1971. },
  1972. {
  1973. "op": "replace",
  1974. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1975. "value": 0.5637899041175842
  1976. },
  1977. {
  1978. "op": "replace",
  1979. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1980. "value": 0.039330899715423584
  1981. },
  1982. {
  1983. "op": "replace",
  1984. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1985. "value": 2.142101764678955
  1986. },
  1987. {
  1988. "op": "replace",
  1989. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1990. "value": -10.145357131958008
  1991. },
  1992. {
  1993. "op": "replace",
  1994. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1995. "value": 34.67571258544922
  1996. },
  1997. {
  1998. "op": "replace",
  1999. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2000. "value": -136.82330322265625
  2001. },
  2002. {
  2003. "op": "replace",
  2004. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2005. "value": 0.8999999761581421
  2006. },
  2007. {
  2008. "op": "replace",
  2009. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2010. "value": 0.8999999761581421
  2011. },
  2012. {
  2013. "op": "replace",
  2014. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2015. "value": 0.8999999761581421
  2016. }
  2017. ]
  2018. },
  2019. "Instance_[396105622418303]": {
  2020. "Source": "Prefabs/Apple.prefab",
  2021. "Patches": [
  2022. {
  2023. "op": "replace",
  2024. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2025. "value": "../Entity_[396097032483711]"
  2026. },
  2027. {
  2028. "op": "replace",
  2029. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2030. "value": 0.6402420401573181
  2031. },
  2032. {
  2033. "op": "replace",
  2034. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2035. "value": 0.06055596470832825
  2036. },
  2037. {
  2038. "op": "replace",
  2039. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2040. "value": 2.1406707763671875
  2041. },
  2042. {
  2043. "op": "replace",
  2044. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2045. "value": 0.000003273011543569737
  2046. },
  2047. {
  2048. "op": "replace",
  2049. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2050. "value": -0.000007004256531217834
  2051. },
  2052. {
  2053. "op": "replace",
  2054. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2055. "value": 62.77271270751953
  2056. },
  2057. {
  2058. "op": "replace",
  2059. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2060. "value": 0.8999999761581421
  2061. },
  2062. {
  2063. "op": "replace",
  2064. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2065. "value": 0.8999999761581421
  2066. },
  2067. {
  2068. "op": "replace",
  2069. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2070. "value": 0.8999999761581421
  2071. }
  2072. ]
  2073. },
  2074. "Instance_[396109917385599]": {
  2075. "Source": "Prefabs/Apple.prefab",
  2076. "Patches": [
  2077. {
  2078. "op": "replace",
  2079. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2080. "value": "../Entity_[396097032483711]"
  2081. },
  2082. {
  2083. "op": "replace",
  2084. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2085. "value": 0.6034329533576965
  2086. },
  2087. {
  2088. "op": "replace",
  2089. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2090. "value": -0.01098257303237915
  2091. },
  2092. {
  2093. "op": "replace",
  2094. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2095. "value": 2.1406705379486084
  2096. },
  2097. {
  2098. "op": "replace",
  2099. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2100. "value": -41.69358444213867
  2101. },
  2102. {
  2103. "op": "replace",
  2104. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2105. "value": -0.4240342080593109
  2106. },
  2107. {
  2108. "op": "replace",
  2109. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2110. "value": -177.4624481201172
  2111. },
  2112. {
  2113. "op": "replace",
  2114. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2115. "value": 0.8999999761581421
  2116. },
  2117. {
  2118. "op": "replace",
  2119. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2120. "value": 0.8999999761581421
  2121. },
  2122. {
  2123. "op": "replace",
  2124. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2125. "value": 0.8999999761581421
  2126. }
  2127. ]
  2128. },
  2129. "Instance_[396148572091263]": {
  2130. "Source": "Prefabs/Apple.prefab",
  2131. "Patches": [
  2132. {
  2133. "op": "replace",
  2134. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2135. "value": "../Entity_[396144277123967]"
  2136. },
  2137. {
  2138. "op": "replace",
  2139. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2140. "value": 0.7291615605354309
  2141. },
  2142. {
  2143. "op": "replace",
  2144. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2145. "value": 0.014803588390350342
  2146. },
  2147. {
  2148. "op": "replace",
  2149. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2150. "value": 1.8406699895858765
  2151. },
  2152. {
  2153. "op": "replace",
  2154. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2155. "value": 0.000003273011543569737
  2156. },
  2157. {
  2158. "op": "replace",
  2159. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2160. "value": -0.000007004256531217834
  2161. },
  2162. {
  2163. "op": "replace",
  2164. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2165. "value": 62.77271270751953
  2166. },
  2167. {
  2168. "op": "replace",
  2169. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2170. "value": 0.8999999761581421
  2171. },
  2172. {
  2173. "op": "replace",
  2174. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2175. "value": 0.8999999761581421
  2176. },
  2177. {
  2178. "op": "replace",
  2179. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2180. "value": 0.8999999761581421
  2181. }
  2182. ]
  2183. },
  2184. "Instance_[396152867058559]": {
  2185. "Source": "Prefabs/Apple.prefab",
  2186. "Patches": [
  2187. {
  2188. "op": "replace",
  2189. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2190. "value": "../Entity_[396144277123967]"
  2191. },
  2192. {
  2193. "op": "replace",
  2194. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2195. "value": 0.3924889862537384
  2196. },
  2197. {
  2198. "op": "replace",
  2199. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2200. "value": 1.7928158044815063
  2201. },
  2202. {
  2203. "op": "replace",
  2204. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2205. "value": -10.145357131958008
  2206. },
  2207. {
  2208. "op": "replace",
  2209. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2210. "value": 34.67571258544922
  2211. },
  2212. {
  2213. "op": "replace",
  2214. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2215. "value": -136.82330322265625
  2216. },
  2217. {
  2218. "op": "replace",
  2219. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2220. "value": 0.8999999761581421
  2221. },
  2222. {
  2223. "op": "replace",
  2224. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2225. "value": 0.8999999761581421
  2226. },
  2227. {
  2228. "op": "replace",
  2229. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2230. "value": 0.8999999761581421
  2231. }
  2232. ]
  2233. },
  2234. "Instance_[396157162025855]": {
  2235. "Source": "Prefabs/Apple.prefab",
  2236. "Patches": [
  2237. {
  2238. "op": "replace",
  2239. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2240. "value": "../Entity_[396144277123967]"
  2241. },
  2242. {
  2243. "op": "replace",
  2244. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2245. "value": 0.6049131751060486
  2246. },
  2247. {
  2248. "op": "replace",
  2249. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2250. "value": -0.14400836825370789
  2251. },
  2252. {
  2253. "op": "replace",
  2254. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2255. "value": 1.9913324117660522
  2256. },
  2257. {
  2258. "op": "replace",
  2259. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2260. "value": -41.69358444213867
  2261. },
  2262. {
  2263. "op": "replace",
  2264. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2265. "value": -0.4240342080593109
  2266. },
  2267. {
  2268. "op": "replace",
  2269. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2270. "value": -177.4624481201172
  2271. },
  2272. {
  2273. "op": "replace",
  2274. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2275. "value": 0.8999999761581421
  2276. },
  2277. {
  2278. "op": "replace",
  2279. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2280. "value": 0.8999999761581421
  2281. },
  2282. {
  2283. "op": "replace",
  2284. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2285. "value": 0.8999999761581421
  2286. }
  2287. ]
  2288. },
  2289. "Instance_[396195816731519]": {
  2290. "Source": "Prefabs/Apple.prefab",
  2291. "Patches": [
  2292. {
  2293. "op": "replace",
  2294. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2295. "value": "../Entity_[396191521764223]"
  2296. },
  2297. {
  2298. "op": "replace",
  2299. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2300. "value": 0.6402419805526733
  2301. },
  2302. {
  2303. "op": "replace",
  2304. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2305. "value": 0.060555875301361084
  2306. },
  2307. {
  2308. "op": "replace",
  2309. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2310. "value": 2.1406710147857666
  2311. },
  2312. {
  2313. "op": "replace",
  2314. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2315. "value": 0.000003273011543569737
  2316. },
  2317. {
  2318. "op": "replace",
  2319. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2320. "value": -0.000007004256531217834
  2321. },
  2322. {
  2323. "op": "replace",
  2324. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2325. "value": 62.77271270751953
  2326. },
  2327. {
  2328. "op": "replace",
  2329. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2330. "value": 0.8999999761581421
  2331. },
  2332. {
  2333. "op": "replace",
  2334. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2335. "value": 0.8999999761581421
  2336. },
  2337. {
  2338. "op": "replace",
  2339. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2340. "value": 0.8999999761581421
  2341. }
  2342. ]
  2343. },
  2344. "Instance_[396200111698815]": {
  2345. "Source": "Prefabs/Apple.prefab",
  2346. "Patches": [
  2347. {
  2348. "op": "replace",
  2349. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2350. "value": "../Entity_[396191521764223]"
  2351. },
  2352. {
  2353. "op": "replace",
  2354. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2355. "value": 0.5637897253036499
  2356. },
  2357. {
  2358. "op": "replace",
  2359. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2360. "value": 0.03933081030845642
  2361. },
  2362. {
  2363. "op": "replace",
  2364. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2365. "value": 2.142101764678955
  2366. },
  2367. {
  2368. "op": "replace",
  2369. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2370. "value": -10.145357131958008
  2371. },
  2372. {
  2373. "op": "replace",
  2374. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2375. "value": 34.67571258544922
  2376. },
  2377. {
  2378. "op": "replace",
  2379. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2380. "value": -136.82330322265625
  2381. },
  2382. {
  2383. "op": "replace",
  2384. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2385. "value": 0.8999999761581421
  2386. },
  2387. {
  2388. "op": "replace",
  2389. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2390. "value": 0.8999999761581421
  2391. },
  2392. {
  2393. "op": "replace",
  2394. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2395. "value": 0.8999999761581421
  2396. }
  2397. ]
  2398. },
  2399. "Instance_[396204406666111]": {
  2400. "Source": "Prefabs/Apple.prefab",
  2401. "Patches": [
  2402. {
  2403. "op": "replace",
  2404. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2405. "value": "../Entity_[396191521764223]"
  2406. },
  2407. {
  2408. "op": "replace",
  2409. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2410. "value": 0.6034330129623413
  2411. },
  2412. {
  2413. "op": "replace",
  2414. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2415. "value": -0.01098257303237915
  2416. },
  2417. {
  2418. "op": "replace",
  2419. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2420. "value": 2.1406707763671875
  2421. },
  2422. {
  2423. "op": "replace",
  2424. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2425. "value": -41.69358444213867
  2426. },
  2427. {
  2428. "op": "replace",
  2429. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2430. "value": -0.4240342080593109
  2431. },
  2432. {
  2433. "op": "replace",
  2434. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2435. "value": -177.4624481201172
  2436. },
  2437. {
  2438. "op": "replace",
  2439. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2440. "value": 0.8999999761581421
  2441. },
  2442. {
  2443. "op": "replace",
  2444. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2445. "value": 0.8999999761581421
  2446. },
  2447. {
  2448. "op": "replace",
  2449. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2450. "value": 0.8999999761581421
  2451. }
  2452. ]
  2453. },
  2454. "Instance_[396243061371775]": {
  2455. "Source": "Prefabs/Apple.prefab",
  2456. "Patches": [
  2457. {
  2458. "op": "replace",
  2459. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2460. "value": "../Entity_[396238766404479]"
  2461. },
  2462. {
  2463. "op": "replace",
  2464. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2465. "value": 0.5637896060943604
  2466. },
  2467. {
  2468. "op": "replace",
  2469. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2470. "value": 0.03933081030845642
  2471. },
  2472. {
  2473. "op": "replace",
  2474. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2475. "value": 2.142101764678955
  2476. },
  2477. {
  2478. "op": "replace",
  2479. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2480. "value": -10.145357131958008
  2481. },
  2482. {
  2483. "op": "replace",
  2484. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2485. "value": 34.67571258544922
  2486. },
  2487. {
  2488. "op": "replace",
  2489. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2490. "value": -136.82330322265625
  2491. },
  2492. {
  2493. "op": "replace",
  2494. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2495. "value": 0.8999999761581421
  2496. },
  2497. {
  2498. "op": "replace",
  2499. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2500. "value": 0.8999999761581421
  2501. },
  2502. {
  2503. "op": "replace",
  2504. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2505. "value": 0.8999999761581421
  2506. }
  2507. ]
  2508. },
  2509. "Instance_[396247356339071]": {
  2510. "Source": "Prefabs/Apple.prefab",
  2511. "Patches": [
  2512. {
  2513. "op": "replace",
  2514. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2515. "value": "../Entity_[396238766404479]"
  2516. },
  2517. {
  2518. "op": "replace",
  2519. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2520. "value": 0.640241801738739
  2521. },
  2522. {
  2523. "op": "replace",
  2524. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2525. "value": 0.060555875301361084
  2526. },
  2527. {
  2528. "op": "replace",
  2529. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2530. "value": 2.1406705379486084
  2531. },
  2532. {
  2533. "op": "replace",
  2534. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2535. "value": 0.000003273011543569737
  2536. },
  2537. {
  2538. "op": "replace",
  2539. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2540. "value": -0.000007004256531217834
  2541. },
  2542. {
  2543. "op": "replace",
  2544. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2545. "value": 62.77271270751953
  2546. },
  2547. {
  2548. "op": "replace",
  2549. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2550. "value": 0.8999999761581421
  2551. },
  2552. {
  2553. "op": "replace",
  2554. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2555. "value": 0.8999999761581421
  2556. },
  2557. {
  2558. "op": "replace",
  2559. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2560. "value": 0.8999999761581421
  2561. }
  2562. ]
  2563. },
  2564. "Instance_[396251651306367]": {
  2565. "Source": "Prefabs/Apple.prefab",
  2566. "Patches": [
  2567. {
  2568. "op": "replace",
  2569. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2570. "value": "../Entity_[396238766404479]"
  2571. },
  2572. {
  2573. "op": "replace",
  2574. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2575. "value": 0.6034331917762756
  2576. },
  2577. {
  2578. "op": "replace",
  2579. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2580. "value": -0.010982543230056763
  2581. },
  2582. {
  2583. "op": "replace",
  2584. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2585. "value": 2.1406707763671875
  2586. },
  2587. {
  2588. "op": "replace",
  2589. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2590. "value": -41.69358444213867
  2591. },
  2592. {
  2593. "op": "replace",
  2594. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2595. "value": -0.4240342080593109
  2596. },
  2597. {
  2598. "op": "replace",
  2599. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2600. "value": -177.4624481201172
  2601. },
  2602. {
  2603. "op": "replace",
  2604. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2605. "value": 0.8999999761581421
  2606. },
  2607. {
  2608. "op": "replace",
  2609. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2610. "value": 0.8999999761581421
  2611. },
  2612. {
  2613. "op": "replace",
  2614. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2615. "value": 0.8999999761581421
  2616. }
  2617. ]
  2618. },
  2619. "Instance_[396290306012031]": {
  2620. "Source": "Prefabs/Apple.prefab",
  2621. "Patches": [
  2622. {
  2623. "op": "replace",
  2624. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2625. "value": "../Entity_[396286011044735]"
  2626. },
  2627. {
  2628. "op": "replace",
  2629. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2630. "value": 0.7143825888633728
  2631. },
  2632. {
  2633. "op": "replace",
  2634. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2635. "value": -0.13575968146324158
  2636. },
  2637. {
  2638. "op": "replace",
  2639. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2640. "value": 2.1406707763671875
  2641. },
  2642. {
  2643. "op": "replace",
  2644. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2645. "value": 16.596332550048828
  2646. },
  2647. {
  2648. "op": "replace",
  2649. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2650. "value": 13.519903182983398
  2651. },
  2652. {
  2653. "op": "replace",
  2654. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2655. "value": 59.38729476928711
  2656. },
  2657. {
  2658. "op": "replace",
  2659. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2660. "value": 0.8999999761581421
  2661. },
  2662. {
  2663. "op": "replace",
  2664. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2665. "value": 0.8999999761581421
  2666. },
  2667. {
  2668. "op": "replace",
  2669. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2670. "value": 0.8999999761581421
  2671. }
  2672. ]
  2673. },
  2674. "Instance_[396294600979327]": {
  2675. "Source": "Prefabs/Apple.prefab",
  2676. "Patches": [
  2677. {
  2678. "op": "replace",
  2679. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2680. "value": "../Entity_[396286011044735]"
  2681. },
  2682. {
  2683. "op": "replace",
  2684. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2685. "value": 0.7402406334877014
  2686. },
  2687. {
  2688. "op": "replace",
  2689. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2690. "value": -0.17920494079589844
  2691. },
  2692. {
  2693. "op": "replace",
  2694. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2695. "value": 2.1406707763671875
  2696. },
  2697. {
  2698. "op": "replace",
  2699. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2700. "value": 62.772701263427734
  2701. },
  2702. {
  2703. "op": "replace",
  2704. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2705. "value": 0.8999999761581421
  2706. },
  2707. {
  2708. "op": "replace",
  2709. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2710. "value": 0.8999999761581421
  2711. },
  2712. {
  2713. "op": "replace",
  2714. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2715. "value": 0.8999999761581421
  2716. }
  2717. ]
  2718. },
  2719. "Instance_[396324665750399]": {
  2720. "Source": "Prefabs/Apple.prefab",
  2721. "Patches": [
  2722. {
  2723. "op": "replace",
  2724. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2725. "value": "../Entity_[396320370783103]"
  2726. },
  2727. {
  2728. "op": "replace",
  2729. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2730. "value": 0.6970729231834412
  2731. },
  2732. {
  2733. "op": "replace",
  2734. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2735. "value": -0.04453292489051819
  2736. },
  2737. {
  2738. "op": "replace",
  2739. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2740. "value": 2.240670680999756
  2741. },
  2742. {
  2743. "op": "replace",
  2744. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2745. "value": 62.772701263427734
  2746. },
  2747. {
  2748. "op": "replace",
  2749. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2750. "value": 0.8999999761581421
  2751. },
  2752. {
  2753. "op": "replace",
  2754. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2755. "value": 0.8999999761581421
  2756. },
  2757. {
  2758. "op": "replace",
  2759. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2760. "value": 0.8999999761581421
  2761. }
  2762. ]
  2763. },
  2764. "Instance_[396328960717695]": {
  2765. "Source": "Prefabs/Apple.prefab",
  2766. "Patches": [
  2767. {
  2768. "op": "replace",
  2769. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2770. "value": "../Entity_[396320370783103]"
  2771. },
  2772. {
  2773. "op": "replace",
  2774. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2775. "value": 0.5371913313865662
  2776. },
  2777. {
  2778. "op": "replace",
  2779. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2780. "value": 0.018380165100097656
  2781. },
  2782. {
  2783. "op": "replace",
  2784. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2785. "value": 1.801783800125122
  2786. },
  2787. {
  2788. "op": "replace",
  2789. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2790. "value": 16.596332550048828
  2791. },
  2792. {
  2793. "op": "replace",
  2794. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2795. "value": 13.519903182983398
  2796. },
  2797. {
  2798. "op": "replace",
  2799. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2800. "value": 59.38729476928711
  2801. },
  2802. {
  2803. "op": "replace",
  2804. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2805. "value": 0.8999999761581421
  2806. },
  2807. {
  2808. "op": "replace",
  2809. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2810. "value": 0.8999999761581421
  2811. },
  2812. {
  2813. "op": "replace",
  2814. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2815. "value": 0.8999999761581421
  2816. }
  2817. ]
  2818. },
  2819. "Instance_[401641835262847]": {
  2820. "Source": "Prefabs/Apple.prefab",
  2821. "Patches": [
  2822. {
  2823. "op": "replace",
  2824. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2825. "value": "../ContainerEntity"
  2826. },
  2827. {
  2828. "op": "replace",
  2829. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2830. "value": 0.07925423979759216
  2831. },
  2832. {
  2833. "op": "replace",
  2834. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2835. "value": -0.10082422196865082
  2836. },
  2837. {
  2838. "op": "replace",
  2839. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2840. "value": 2.050983190536499
  2841. },
  2842. {
  2843. "op": "replace",
  2844. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2845. "value": -87.92320251464844
  2846. },
  2847. {
  2848. "op": "replace",
  2849. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2850. "value": 0.8999999761581421
  2851. },
  2852. {
  2853. "op": "replace",
  2854. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2855. "value": 0.8999999761581421
  2856. },
  2857. {
  2858. "op": "replace",
  2859. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2860. "value": 0.8999999761581421
  2861. }
  2862. ]
  2863. },
  2864. "Instance_[401654720164735]": {
  2865. "Source": "Prefabs/Apple.prefab",
  2866. "Patches": [
  2867. {
  2868. "op": "replace",
  2869. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2870. "value": "../ContainerEntity"
  2871. },
  2872. {
  2873. "op": "replace",
  2874. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2875. "value": 0.0415416955947876
  2876. },
  2877. {
  2878. "op": "replace",
  2879. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2880. "value": 0.1251221001148224
  2881. },
  2882. {
  2883. "op": "replace",
  2884. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2885. "value": 2.0523018836975098
  2886. },
  2887. {
  2888. "op": "replace",
  2889. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2890. "value": -132.94012451171875
  2891. },
  2892. {
  2893. "op": "replace",
  2894. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2895. "value": 0.8999999761581421
  2896. },
  2897. {
  2898. "op": "replace",
  2899. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2900. "value": 0.8999999761581421
  2901. },
  2902. {
  2903. "op": "replace",
  2904. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2905. "value": 0.8999999761581421
  2906. }
  2907. ]
  2908. },
  2909. "Instance_[401667605066623]": {
  2910. "Source": "Prefabs/Apple.prefab",
  2911. "Patches": [
  2912. {
  2913. "op": "replace",
  2914. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2915. "value": "../ContainerEntity"
  2916. },
  2917. {
  2918. "op": "replace",
  2919. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2920. "value": -0.13133928179740906
  2921. },
  2922. {
  2923. "op": "replace",
  2924. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2925. "value": 0.26237866282463074
  2926. },
  2927. {
  2928. "op": "replace",
  2929. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2930. "value": 1.3229258060455322
  2931. },
  2932. {
  2933. "op": "replace",
  2934. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2935. "value": -178.66636657714844
  2936. },
  2937. {
  2938. "op": "replace",
  2939. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2940. "value": 0.8999999761581421
  2941. },
  2942. {
  2943. "op": "replace",
  2944. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2945. "value": 0.8999999761581421
  2946. },
  2947. {
  2948. "op": "replace",
  2949. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2950. "value": 0.8999999761581421
  2951. }
  2952. ]
  2953. },
  2954. "Instance_[401680489968511]": {
  2955. "Source": "Prefabs/Apple.prefab",
  2956. "Patches": [
  2957. {
  2958. "op": "replace",
  2959. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2960. "value": "../ContainerEntity"
  2961. },
  2962. {
  2963. "op": "replace",
  2964. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2965. "value": 0.06797611713409424
  2966. },
  2967. {
  2968. "op": "replace",
  2969. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2970. "value": -0.2507745623588562
  2971. },
  2972. {
  2973. "op": "replace",
  2974. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2975. "value": 0.957241952419281
  2976. },
  2977. {
  2978. "op": "replace",
  2979. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2980. "value": -178.66636657714844
  2981. },
  2982. {
  2983. "op": "replace",
  2984. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  2985. "value": 0.8999999761581421
  2986. },
  2987. {
  2988. "op": "replace",
  2989. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  2990. "value": 0.8999999761581421
  2991. },
  2992. {
  2993. "op": "replace",
  2994. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  2995. "value": 0.8999999761581421
  2996. }
  2997. ]
  2998. },
  2999. "Instance_[401693374870399]": {
  3000. "Source": "Prefabs/Apple.prefab",
  3001. "Patches": [
  3002. {
  3003. "op": "replace",
  3004. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3005. "value": "../ContainerEntity"
  3006. },
  3007. {
  3008. "op": "replace",
  3009. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3010. "value": 0.3661251366138458
  3011. },
  3012. {
  3013. "op": "replace",
  3014. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3015. "value": 0.3352438807487488
  3016. },
  3017. {
  3018. "op": "replace",
  3019. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3020. "value": 1.3878802061080933
  3021. },
  3022. {
  3023. "op": "replace",
  3024. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3025. "value": -27.970508575439453
  3026. },
  3027. {
  3028. "op": "replace",
  3029. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3030. "value": 0.8999999761581421
  3031. },
  3032. {
  3033. "op": "replace",
  3034. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3035. "value": 0.8999999761581421
  3036. },
  3037. {
  3038. "op": "replace",
  3039. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3040. "value": 0.8999999761581421
  3041. }
  3042. ]
  3043. },
  3044. "Instance_[401706259772287]": {
  3045. "Source": "Prefabs/Apple.prefab",
  3046. "Patches": [
  3047. {
  3048. "op": "replace",
  3049. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3050. "value": "../ContainerEntity"
  3051. },
  3052. {
  3053. "op": "replace",
  3054. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3055. "value": -0.318167507648468
  3056. },
  3057. {
  3058. "op": "replace",
  3059. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3060. "value": -0.15104106068611145
  3061. },
  3062. {
  3063. "op": "replace",
  3064. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3065. "value": 1.2093260288238525
  3066. },
  3067. {
  3068. "op": "replace",
  3069. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3070. "value": -178.66636657714844
  3071. },
  3072. {
  3073. "op": "replace",
  3074. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3075. "value": 0.8999999761581421
  3076. },
  3077. {
  3078. "op": "replace",
  3079. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3080. "value": 0.8999999761581421
  3081. },
  3082. {
  3083. "op": "replace",
  3084. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3085. "value": 0.8999999761581421
  3086. }
  3087. ]
  3088. },
  3089. "Instance_[401719144674175]": {
  3090. "Source": "Prefabs/Apple.prefab",
  3091. "Patches": [
  3092. {
  3093. "op": "replace",
  3094. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3095. "value": "../ContainerEntity"
  3096. },
  3097. {
  3098. "op": "replace",
  3099. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3100. "value": -0.19765403866767883
  3101. },
  3102. {
  3103. "op": "replace",
  3104. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3105. "value": -0.26040738821029663
  3106. },
  3107. {
  3108. "op": "replace",
  3109. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3110. "value": 0.6951061487197876
  3111. },
  3112. {
  3113. "op": "replace",
  3114. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3115. "value": -27.970508575439453
  3116. },
  3117. {
  3118. "op": "replace",
  3119. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3120. "value": 0.8999999761581421
  3121. },
  3122. {
  3123. "op": "replace",
  3124. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3125. "value": 0.8999999761581421
  3126. },
  3127. {
  3128. "op": "replace",
  3129. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3130. "value": 0.8999999761581421
  3131. }
  3132. ]
  3133. },
  3134. "Instance_[408402113786751]": {
  3135. "Source": "Prefabs/Apple.prefab",
  3136. "Patches": [
  3137. {
  3138. "op": "replace",
  3139. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3140. "value": "../ContainerEntity"
  3141. },
  3142. {
  3143. "op": "replace",
  3144. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3145. "value": -0.0359843447804451
  3146. },
  3147. {
  3148. "op": "replace",
  3149. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3150. "value": 0.28406164050102234
  3151. },
  3152. {
  3153. "op": "replace",
  3154. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3155. "value": 1.7951061725616455
  3156. },
  3157. {
  3158. "op": "replace",
  3159. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3160. "value": -178.66636657714844
  3161. },
  3162. {
  3163. "op": "replace",
  3164. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3165. "value": 0.8999999761581421
  3166. },
  3167. {
  3168. "op": "replace",
  3169. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3170. "value": 0.8999999761581421
  3171. },
  3172. {
  3173. "op": "replace",
  3174. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3175. "value": 0.8999999761581421
  3176. }
  3177. ]
  3178. },
  3179. "Instance_[408440768492415]": {
  3180. "Source": "Prefabs/Apple.prefab",
  3181. "Patches": [
  3182. {
  3183. "op": "replace",
  3184. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3185. "value": "../Entity_[408419293655935]"
  3186. },
  3187. {
  3188. "op": "replace",
  3189. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3190. "value": 0.6034330725669861
  3191. },
  3192. {
  3193. "op": "replace",
  3194. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3195. "value": -0.010982409119606018
  3196. },
  3197. {
  3198. "op": "replace",
  3199. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3200. "value": 2.1406707763671875
  3201. },
  3202. {
  3203. "op": "replace",
  3204. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3205. "value": -41.693363189697266
  3206. },
  3207. {
  3208. "op": "replace",
  3209. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3210. "value": -0.4240524172782898
  3211. },
  3212. {
  3213. "op": "replace",
  3214. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3215. "value": -177.46246337890625
  3216. },
  3217. {
  3218. "op": "replace",
  3219. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3220. "value": 0.8999999761581421
  3221. },
  3222. {
  3223. "op": "replace",
  3224. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3225. "value": 0.8999999761581421
  3226. },
  3227. {
  3228. "op": "replace",
  3229. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3230. "value": 0.8999999761581421
  3231. }
  3232. ]
  3233. },
  3234. "Instance_[408445063459711]": {
  3235. "Source": "Prefabs/Apple.prefab",
  3236. "Patches": [
  3237. {
  3238. "op": "replace",
  3239. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3240. "value": "../Entity_[408414998688639]"
  3241. },
  3242. {
  3243. "op": "replace",
  3244. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3245. "value": 0.5637903213500977
  3246. },
  3247. {
  3248. "op": "replace",
  3249. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3250. "value": 0.03933107852935791
  3251. },
  3252. {
  3253. "op": "replace",
  3254. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3255. "value": 2.1421022415161133
  3256. },
  3257. {
  3258. "op": "replace",
  3259. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3260. "value": -10.145342826843262
  3261. },
  3262. {
  3263. "op": "replace",
  3264. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3265. "value": 34.675743103027344
  3266. },
  3267. {
  3268. "op": "replace",
  3269. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3270. "value": -136.8233184814453
  3271. },
  3272. {
  3273. "op": "replace",
  3274. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3275. "value": 0.8999999761581421
  3276. },
  3277. {
  3278. "op": "replace",
  3279. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3280. "value": 0.8999999761581421
  3281. },
  3282. {
  3283. "op": "replace",
  3284. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3285. "value": 0.8999999761581421
  3286. }
  3287. ]
  3288. },
  3289. "Instance_[408449358427007]": {
  3290. "Source": "Prefabs/Apple.prefab",
  3291. "Patches": [
  3292. {
  3293. "op": "replace",
  3294. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3295. "value": "../Entity_[408432178557823]"
  3296. },
  3297. {
  3298. "op": "replace",
  3299. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3300. "value": 0.6402418613433838
  3301. },
  3302. {
  3303. "op": "replace",
  3304. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3305. "value": 0.06055524945259094
  3306. },
  3307. {
  3308. "op": "replace",
  3309. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3310. "value": 2.140671491622925
  3311. },
  3312. {
  3313. "op": "replace",
  3314. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3315. "value": -0.000009573574061505497
  3316. },
  3317. {
  3318. "op": "replace",
  3319. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3320. "value": 62.77272033691406
  3321. },
  3322. {
  3323. "op": "replace",
  3324. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3325. "value": 0.8999999761581421
  3326. },
  3327. {
  3328. "op": "replace",
  3329. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3330. "value": 0.8999999761581421
  3331. },
  3332. {
  3333. "op": "replace",
  3334. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3335. "value": 0.8999999761581421
  3336. }
  3337. ]
  3338. },
  3339. "Instance_[408453653394303]": {
  3340. "Source": "Prefabs/Apple.prefab",
  3341. "Patches": [
  3342. {
  3343. "op": "replace",
  3344. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3345. "value": "../Entity_[408427883590527]"
  3346. },
  3347. {
  3348. "op": "replace",
  3349. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3350. "value": 0.5637892484664917
  3351. },
  3352. {
  3353. "op": "replace",
  3354. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3355. "value": 0.03933006525039673
  3356. },
  3357. {
  3358. "op": "replace",
  3359. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3360. "value": 2.1421010494232178
  3361. },
  3362. {
  3363. "op": "replace",
  3364. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3365. "value": -10.145389556884766
  3366. },
  3367. {
  3368. "op": "replace",
  3369. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3370. "value": 34.67579650878906
  3371. },
  3372. {
  3373. "op": "replace",
  3374. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3375. "value": -136.82337951660156
  3376. },
  3377. {
  3378. "op": "replace",
  3379. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3380. "value": 0.8999999761581421
  3381. },
  3382. {
  3383. "op": "replace",
  3384. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3385. "value": 0.8999999761581421
  3386. },
  3387. {
  3388. "op": "replace",
  3389. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3390. "value": 0.8999999761581421
  3391. }
  3392. ]
  3393. },
  3394. "Instance_[408457948361599]": {
  3395. "Source": "Prefabs/Apple.prefab",
  3396. "Patches": [
  3397. {
  3398. "op": "replace",
  3399. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3400. "value": "../Entity_[408423588623231]"
  3401. },
  3402. {
  3403. "op": "replace",
  3404. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3405. "value": 0.7402403354644775
  3406. },
  3407. {
  3408. "op": "replace",
  3409. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3410. "value": -0.1792050451040268
  3411. },
  3412. {
  3413. "op": "replace",
  3414. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3415. "value": 2.1406707763671875
  3416. },
  3417. {
  3418. "op": "replace",
  3419. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3420. "value": 62.772605895996094
  3421. },
  3422. {
  3423. "op": "replace",
  3424. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3425. "value": 0.8999999761581421
  3426. },
  3427. {
  3428. "op": "replace",
  3429. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3430. "value": 0.8999999761581421
  3431. },
  3432. {
  3433. "op": "replace",
  3434. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3435. "value": 0.8999999761581421
  3436. }
  3437. ]
  3438. },
  3439. "Instance_[408462243328895]": {
  3440. "Source": "Prefabs/Apple.prefab",
  3441. "Patches": [
  3442. {
  3443. "op": "replace",
  3444. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3445. "value": "../Entity_[408414998688639]"
  3446. },
  3447. {
  3448. "op": "replace",
  3449. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3450. "value": 0.6402420997619629
  3451. },
  3452. {
  3453. "op": "replace",
  3454. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3455. "value": 0.0605560839176178
  3456. },
  3457. {
  3458. "op": "replace",
  3459. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3460. "value": 2.140671730041504
  3461. },
  3462. {
  3463. "op": "replace",
  3464. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3465. "value": 0.0000013774617855233373
  3466. },
  3467. {
  3468. "op": "replace",
  3469. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3470. "value": 0.0000018404717820885708
  3471. },
  3472. {
  3473. "op": "replace",
  3474. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3475. "value": 62.77271270751953
  3476. },
  3477. {
  3478. "op": "replace",
  3479. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3480. "value": 0.8999999761581421
  3481. },
  3482. {
  3483. "op": "replace",
  3484. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3485. "value": 0.8999999761581421
  3486. },
  3487. {
  3488. "op": "replace",
  3489. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3490. "value": 0.8999999761581421
  3491. }
  3492. ]
  3493. },
  3494. "Instance_[408466538296191]": {
  3495. "Source": "Prefabs/Apple.prefab",
  3496. "Patches": [
  3497. {
  3498. "op": "replace",
  3499. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3500. "value": "../Entity_[408432178557823]"
  3501. },
  3502. {
  3503. "op": "replace",
  3504. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3505. "value": 0.603432834148407
  3506. },
  3507. {
  3508. "op": "replace",
  3509. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3510. "value": -0.010983258485794067
  3511. },
  3512. {
  3513. "op": "replace",
  3514. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3515. "value": 2.140671491622925
  3516. },
  3517. {
  3518. "op": "replace",
  3519. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3520. "value": -41.693660736083984
  3521. },
  3522. {
  3523. "op": "replace",
  3524. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3525. "value": -0.4240313172340393
  3526. },
  3527. {
  3528. "op": "replace",
  3529. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3530. "value": -177.46246337890625
  3531. },
  3532. {
  3533. "op": "replace",
  3534. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3535. "value": 0.8999999761581421
  3536. },
  3537. {
  3538. "op": "replace",
  3539. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3540. "value": 0.8999999761581421
  3541. },
  3542. {
  3543. "op": "replace",
  3544. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3545. "value": 0.8999999761581421
  3546. }
  3547. ]
  3548. },
  3549. "Instance_[408470833263487]": {
  3550. "Source": "Prefabs/Apple.prefab",
  3551. "Patches": [
  3552. {
  3553. "op": "replace",
  3554. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3555. "value": "../Entity_[408427883590527]"
  3556. },
  3557. {
  3558. "op": "replace",
  3559. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3560. "value": 0.6034332513809204
  3561. },
  3562. {
  3563. "op": "replace",
  3564. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3565. "value": -0.010983332991600037
  3566. },
  3567. {
  3568. "op": "replace",
  3569. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3570. "value": 2.140671730041504
  3571. },
  3572. {
  3573. "op": "replace",
  3574. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3575. "value": -41.693660736083984
  3576. },
  3577. {
  3578. "op": "replace",
  3579. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3580. "value": -0.4240313172340393
  3581. },
  3582. {
  3583. "op": "replace",
  3584. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3585. "value": -177.46246337890625
  3586. },
  3587. {
  3588. "op": "replace",
  3589. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3590. "value": 0.8999999761581421
  3591. },
  3592. {
  3593. "op": "replace",
  3594. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3595. "value": 0.8999999761581421
  3596. },
  3597. {
  3598. "op": "replace",
  3599. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3600. "value": 0.8999999761581421
  3601. }
  3602. ]
  3603. },
  3604. "Instance_[408475128230783]": {
  3605. "Source": "Prefabs/Apple.prefab",
  3606. "Patches": [
  3607. {
  3608. "op": "replace",
  3609. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3610. "value": "../Entity_[408436473525119]"
  3611. },
  3612. {
  3613. "op": "replace",
  3614. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3615. "value": 0.6034329533576965
  3616. },
  3617. {
  3618. "op": "replace",
  3619. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3620. "value": -0.010983288288116455
  3621. },
  3622. {
  3623. "op": "replace",
  3624. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3625. "value": 2.1406707763671875
  3626. },
  3627. {
  3628. "op": "replace",
  3629. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3630. "value": -41.693660736083984
  3631. },
  3632. {
  3633. "op": "replace",
  3634. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3635. "value": -0.4240313172340393
  3636. },
  3637. {
  3638. "op": "replace",
  3639. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3640. "value": -177.46246337890625
  3641. },
  3642. {
  3643. "op": "replace",
  3644. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3645. "value": 0.8999999761581421
  3646. },
  3647. {
  3648. "op": "replace",
  3649. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3650. "value": 0.8999999761581421
  3651. },
  3652. {
  3653. "op": "replace",
  3654. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3655. "value": 0.8999999761581421
  3656. }
  3657. ]
  3658. },
  3659. "Instance_[408479423198079]": {
  3660. "Source": "Prefabs/Apple.prefab",
  3661. "Patches": [
  3662. {
  3663. "op": "replace",
  3664. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3665. "value": "../Entity_[408423588623231]"
  3666. },
  3667. {
  3668. "op": "replace",
  3669. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3670. "value": 0.7143822908401489
  3671. },
  3672. {
  3673. "op": "replace",
  3674. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3675. "value": -0.13575983047485352
  3676. },
  3677. {
  3678. "op": "replace",
  3679. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3680. "value": 2.1406707763671875
  3681. },
  3682. {
  3683. "op": "replace",
  3684. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3685. "value": 16.596139907836914
  3686. },
  3687. {
  3688. "op": "replace",
  3689. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3690. "value": 13.519740104675293
  3691. },
  3692. {
  3693. "op": "replace",
  3694. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3695. "value": 0.8999999761581421
  3696. },
  3697. {
  3698. "op": "replace",
  3699. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3700. "value": 0.8999999761581421
  3701. },
  3702. {
  3703. "op": "replace",
  3704. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3705. "value": 0.8999999761581421
  3706. }
  3707. ]
  3708. },
  3709. "Instance_[408483718165375]": {
  3710. "Source": "Prefabs/Apple.prefab",
  3711. "Patches": [
  3712. {
  3713. "op": "replace",
  3714. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3715. "value": "../Entity_[408432178557823]"
  3716. },
  3717. {
  3718. "op": "replace",
  3719. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3720. "value": 0.5637894868850708
  3721. },
  3722. {
  3723. "op": "replace",
  3724. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3725. "value": 0.039330244064331055
  3726. },
  3727. {
  3728. "op": "replace",
  3729. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3730. "value": 2.142102003097534
  3731. },
  3732. {
  3733. "op": "replace",
  3734. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3735. "value": -10.145389556884766
  3736. },
  3737. {
  3738. "op": "replace",
  3739. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3740. "value": 34.67579650878906
  3741. },
  3742. {
  3743. "op": "replace",
  3744. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3745. "value": -136.82337951660156
  3746. },
  3747. {
  3748. "op": "replace",
  3749. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3750. "value": 0.8999999761581421
  3751. },
  3752. {
  3753. "op": "replace",
  3754. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3755. "value": 0.8999999761581421
  3756. },
  3757. {
  3758. "op": "replace",
  3759. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3760. "value": 0.8999999761581421
  3761. }
  3762. ]
  3763. },
  3764. "Instance_[408488013132671]": {
  3765. "Source": "Prefabs/Apple.prefab",
  3766. "Patches": [
  3767. {
  3768. "op": "replace",
  3769. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3770. "value": "../Entity_[408436473525119]"
  3771. },
  3772. {
  3773. "op": "replace",
  3774. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3775. "value": 0.5637897253036499
  3776. },
  3777. {
  3778. "op": "replace",
  3779. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3780. "value": 0.039330318570137024
  3781. },
  3782. {
  3783. "op": "replace",
  3784. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3785. "value": 2.142101764678955
  3786. },
  3787. {
  3788. "op": "replace",
  3789. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3790. "value": -10.145389556884766
  3791. },
  3792. {
  3793. "op": "replace",
  3794. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3795. "value": 34.67579650878906
  3796. },
  3797. {
  3798. "op": "replace",
  3799. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3800. "value": -136.82337951660156
  3801. },
  3802. {
  3803. "op": "replace",
  3804. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3805. "value": 0.8999999761581421
  3806. },
  3807. {
  3808. "op": "replace",
  3809. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3810. "value": 0.8999999761581421
  3811. },
  3812. {
  3813. "op": "replace",
  3814. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3815. "value": 0.8999999761581421
  3816. }
  3817. ]
  3818. },
  3819. "Instance_[408492308099967]": {
  3820. "Source": "Prefabs/Apple.prefab",
  3821. "Patches": [
  3822. {
  3823. "op": "replace",
  3824. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3825. "value": "../Entity_[408427883590527]"
  3826. },
  3827. {
  3828. "op": "replace",
  3829. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3830. "value": 0.6402418613433838
  3831. },
  3832. {
  3833. "op": "replace",
  3834. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3835. "value": 0.06055516004562378
  3836. },
  3837. {
  3838. "op": "replace",
  3839. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3840. "value": 2.1406710147857666
  3841. },
  3842. {
  3843. "op": "replace",
  3844. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3845. "value": -0.000009573574061505497
  3846. },
  3847. {
  3848. "op": "replace",
  3849. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3850. "value": 62.77272033691406
  3851. },
  3852. {
  3853. "op": "replace",
  3854. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3855. "value": 0.8999999761581421
  3856. },
  3857. {
  3858. "op": "replace",
  3859. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3860. "value": 0.8999999761581421
  3861. },
  3862. {
  3863. "op": "replace",
  3864. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3865. "value": 0.8999999761581421
  3866. }
  3867. ]
  3868. },
  3869. "Instance_[408496603067263]": {
  3870. "Source": "Prefabs/Apple.prefab",
  3871. "Patches": [
  3872. {
  3873. "op": "replace",
  3874. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3875. "value": "../Entity_[408414998688639]"
  3876. },
  3877. {
  3878. "op": "replace",
  3879. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3880. "value": 0.6034331321716309
  3881. },
  3882. {
  3883. "op": "replace",
  3884. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3885. "value": -0.010982334613800049
  3886. },
  3887. {
  3888. "op": "replace",
  3889. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3890. "value": 2.140671491622925
  3891. },
  3892. {
  3893. "op": "replace",
  3894. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3895. "value": -41.693363189697266
  3896. },
  3897. {
  3898. "op": "replace",
  3899. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3900. "value": -0.4240524172782898
  3901. },
  3902. {
  3903. "op": "replace",
  3904. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3905. "value": -177.46246337890625
  3906. },
  3907. {
  3908. "op": "replace",
  3909. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3910. "value": 0.8999999761581421
  3911. },
  3912. {
  3913. "op": "replace",
  3914. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3915. "value": 0.8999999761581421
  3916. },
  3917. {
  3918. "op": "replace",
  3919. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3920. "value": 0.8999999761581421
  3921. }
  3922. ]
  3923. },
  3924. "Instance_[408500898034559]": {
  3925. "Source": "Prefabs/Apple.prefab",
  3926. "Patches": [
  3927. {
  3928. "op": "replace",
  3929. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3930. "value": "../Entity_[408419293655935]"
  3931. },
  3932. {
  3933. "op": "replace",
  3934. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3935. "value": 0.563789963722229
  3936. },
  3937. {
  3938. "op": "replace",
  3939. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3940. "value": 0.03933114558458328
  3941. },
  3942. {
  3943. "op": "replace",
  3944. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3945. "value": 2.142101287841797
  3946. },
  3947. {
  3948. "op": "replace",
  3949. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3950. "value": -10.145342826843262
  3951. },
  3952. {
  3953. "op": "replace",
  3954. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3955. "value": 34.675743103027344
  3956. },
  3957. {
  3958. "op": "replace",
  3959. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3960. "value": -136.8233184814453
  3961. },
  3962. {
  3963. "op": "replace",
  3964. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  3965. "value": 0.8999999761581421
  3966. },
  3967. {
  3968. "op": "replace",
  3969. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  3970. "value": 0.8999999761581421
  3971. },
  3972. {
  3973. "op": "replace",
  3974. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  3975. "value": 0.8999999761581421
  3976. }
  3977. ]
  3978. },
  3979. "Instance_[408505193001855]": {
  3980. "Source": "Prefabs/Apple.prefab",
  3981. "Patches": [
  3982. {
  3983. "op": "replace",
  3984. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3985. "value": "../ContainerEntity"
  3986. },
  3987. {
  3988. "op": "replace",
  3989. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3990. "value": 0.3955511450767517
  3991. },
  3992. {
  3993. "op": "replace",
  3994. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3995. "value": -0.0629330426454544
  3996. },
  3997. {
  3998. "op": "replace",
  3999. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4000. "value": 1.4169620275497437
  4001. },
  4002. {
  4003. "op": "replace",
  4004. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4005. "value": -92.20634460449219
  4006. },
  4007. {
  4008. "op": "replace",
  4009. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4010. "value": 0.8999999761581421
  4011. },
  4012. {
  4013. "op": "replace",
  4014. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4015. "value": 0.8999999761581421
  4016. },
  4017. {
  4018. "op": "replace",
  4019. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4020. "value": 0.8999999761581421
  4021. }
  4022. ]
  4023. },
  4024. "Instance_[408509487969151]": {
  4025. "Source": "Prefabs/Apple.prefab",
  4026. "Patches": [
  4027. {
  4028. "op": "replace",
  4029. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4030. "value": "../Entity_[408436473525119]"
  4031. },
  4032. {
  4033. "op": "replace",
  4034. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4035. "value": 0.6402417421340942
  4036. },
  4037. {
  4038. "op": "replace",
  4039. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4040. "value": 0.060555264353752136
  4041. },
  4042. {
  4043. "op": "replace",
  4044. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4045. "value": 2.1406710147857666
  4046. },
  4047. {
  4048. "op": "replace",
  4049. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4050. "value": -0.000009573574061505497
  4051. },
  4052. {
  4053. "op": "replace",
  4054. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4055. "value": 62.77272033691406
  4056. },
  4057. {
  4058. "op": "replace",
  4059. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4060. "value": 0.8999999761581421
  4061. },
  4062. {
  4063. "op": "replace",
  4064. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4065. "value": 0.8999999761581421
  4066. },
  4067. {
  4068. "op": "replace",
  4069. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4070. "value": 0.8999999761581421
  4071. }
  4072. ]
  4073. },
  4074. "Instance_[408513782936447]": {
  4075. "Source": "Prefabs/Apple.prefab",
  4076. "Patches": [
  4077. {
  4078. "op": "replace",
  4079. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4080. "value": "../Entity_[408419293655935]"
  4081. },
  4082. {
  4083. "op": "replace",
  4084. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4085. "value": 0.6402420401573181
  4086. },
  4087. {
  4088. "op": "replace",
  4089. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4090. "value": 0.06055619567632675
  4091. },
  4092. {
  4093. "op": "replace",
  4094. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4095. "value": 2.1406712532043457
  4096. },
  4097. {
  4098. "op": "replace",
  4099. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  4100. "value": 0.0000013774617855233373
  4101. },
  4102. {
  4103. "op": "replace",
  4104. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4105. "value": 0.0000018404717820885708
  4106. },
  4107. {
  4108. "op": "replace",
  4109. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4110. "value": 62.77271270751953
  4111. },
  4112. {
  4113. "op": "replace",
  4114. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4115. "value": 0.8999999761581421
  4116. },
  4117. {
  4118. "op": "replace",
  4119. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4120. "value": 0.8999999761581421
  4121. },
  4122. {
  4123. "op": "replace",
  4124. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4125. "value": 0.8999999761581421
  4126. }
  4127. ]
  4128. },
  4129. "Instance_[408702761497471]": {
  4130. "Source": "Prefabs/Apple.prefab",
  4131. "Patches": [
  4132. {
  4133. "op": "replace",
  4134. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4135. "value": "../Entity_[408698466530175]"
  4136. },
  4137. {
  4138. "op": "replace",
  4139. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4140. "value": 0.6034328937530518
  4141. },
  4142. {
  4143. "op": "replace",
  4144. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4145. "value": -0.010983288288116455
  4146. },
  4147. {
  4148. "op": "replace",
  4149. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4150. "value": 2.1406712532043457
  4151. },
  4152. {
  4153. "op": "replace",
  4154. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  4155. "value": -41.693660736083984
  4156. },
  4157. {
  4158. "op": "replace",
  4159. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4160. "value": -0.4240313172340393
  4161. },
  4162. {
  4163. "op": "replace",
  4164. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4165. "value": -177.46246337890625
  4166. },
  4167. {
  4168. "op": "replace",
  4169. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4170. "value": 0.8999999761581421
  4171. },
  4172. {
  4173. "op": "replace",
  4174. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4175. "value": 0.8999999761581421
  4176. },
  4177. {
  4178. "op": "replace",
  4179. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4180. "value": 0.8999999761581421
  4181. }
  4182. ]
  4183. },
  4184. "Instance_[408707056464767]": {
  4185. "Source": "Prefabs/Apple.prefab",
  4186. "Patches": [
  4187. {
  4188. "op": "replace",
  4189. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4190. "value": "../Entity_[408698466530175]"
  4191. },
  4192. {
  4193. "op": "replace",
  4194. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4195. "value": 0.5637896060943604
  4196. },
  4197. {
  4198. "op": "replace",
  4199. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4200. "value": 0.039330244064331055
  4201. },
  4202. {
  4203. "op": "replace",
  4204. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4205. "value": 2.142102003097534
  4206. },
  4207. {
  4208. "op": "replace",
  4209. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  4210. "value": -10.145389556884766
  4211. },
  4212. {
  4213. "op": "replace",
  4214. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4215. "value": 34.67579650878906
  4216. },
  4217. {
  4218. "op": "replace",
  4219. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4220. "value": -136.82337951660156
  4221. },
  4222. {
  4223. "op": "replace",
  4224. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4225. "value": 0.8999999761581421
  4226. },
  4227. {
  4228. "op": "replace",
  4229. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4230. "value": 0.8999999761581421
  4231. },
  4232. {
  4233. "op": "replace",
  4234. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4235. "value": 0.8999999761581421
  4236. }
  4237. ]
  4238. },
  4239. "Instance_[408711351432063]": {
  4240. "Source": "Prefabs/Apple.prefab",
  4241. "Patches": [
  4242. {
  4243. "op": "replace",
  4244. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4245. "value": "../Entity_[408698466530175]"
  4246. },
  4247. {
  4248. "op": "replace",
  4249. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4250. "value": 0.6402419805526733
  4251. },
  4252. {
  4253. "op": "replace",
  4254. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4255. "value": 0.06055523455142975
  4256. },
  4257. {
  4258. "op": "replace",
  4259. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4260. "value": 2.1406712532043457
  4261. },
  4262. {
  4263. "op": "replace",
  4264. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4265. "value": -0.000009573574061505497
  4266. },
  4267. {
  4268. "op": "replace",
  4269. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4270. "value": 62.77272033691406
  4271. },
  4272. {
  4273. "op": "replace",
  4274. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4275. "value": 0.8999999761581421
  4276. },
  4277. {
  4278. "op": "replace",
  4279. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4280. "value": 0.8999999761581421
  4281. },
  4282. {
  4283. "op": "replace",
  4284. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4285. "value": 0.8999999761581421
  4286. }
  4287. ]
  4288. },
  4289. "Instance_[408745711170431]": {
  4290. "Source": "Prefabs/Apple.prefab",
  4291. "Patches": [
  4292. {
  4293. "op": "replace",
  4294. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4295. "value": "../Entity_[396191521764223]"
  4296. },
  4297. {
  4298. "op": "replace",
  4299. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4300. "value": 0.3228529095649719
  4301. },
  4302. {
  4303. "op": "replace",
  4304. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4305. "value": -0.07505708932876587
  4306. },
  4307. {
  4308. "op": "replace",
  4309. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4310. "value": 1.8568737506866455
  4311. },
  4312. {
  4313. "op": "replace",
  4314. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  4315. "value": -10.145357131958008
  4316. },
  4317. {
  4318. "op": "replace",
  4319. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4320. "value": 34.67571258544922
  4321. },
  4322. {
  4323. "op": "replace",
  4324. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4325. "value": -136.82330322265625
  4326. },
  4327. {
  4328. "op": "replace",
  4329. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4330. "value": 0.8999999761581421
  4331. },
  4332. {
  4333. "op": "replace",
  4334. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4335. "value": 0.8999999761581421
  4336. },
  4337. {
  4338. "op": "replace",
  4339. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4340. "value": 0.8999999761581421
  4341. }
  4342. ]
  4343. },
  4344. "Instance_[408758596072319]": {
  4345. "Source": "Prefabs/Apple.prefab",
  4346. "Patches": [
  4347. {
  4348. "op": "replace",
  4349. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4350. "value": "../ContainerEntity"
  4351. },
  4352. {
  4353. "op": "replace",
  4354. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4355. "value": 0.4133438766002655
  4356. },
  4357. {
  4358. "op": "replace",
  4359. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4360. "value": 0.09189382195472717
  4361. },
  4362. {
  4363. "op": "replace",
  4364. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4365. "value": 0.957241952419281
  4366. },
  4367. {
  4368. "op": "replace",
  4369. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4370. "value": -178.66636657714844
  4371. },
  4372. {
  4373. "op": "replace",
  4374. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4375. "value": 0.8999999761581421
  4376. },
  4377. {
  4378. "op": "replace",
  4379. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4380. "value": 0.8999999761581421
  4381. },
  4382. {
  4383. "op": "replace",
  4384. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4385. "value": 0.8999999761581421
  4386. }
  4387. ]
  4388. },
  4389. "Instance_[408771480974207]": {
  4390. "Source": "Prefabs/Apple.prefab",
  4391. "Patches": [
  4392. {
  4393. "op": "replace",
  4394. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4395. "value": "../Entity_[408432178557823]"
  4396. },
  4397. {
  4398. "op": "replace",
  4399. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4400. "value": 1.1831845045089722
  4401. },
  4402. {
  4403. "op": "replace",
  4404. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4405. "value": -0.22705914080142975
  4406. },
  4407. {
  4408. "op": "replace",
  4409. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4410. "value": 2.140671730041504
  4411. },
  4412. {
  4413. "op": "replace",
  4414. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4415. "value": -0.000009573574061505497
  4416. },
  4417. {
  4418. "op": "replace",
  4419. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4420. "value": 62.77272033691406
  4421. },
  4422. {
  4423. "op": "replace",
  4424. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4425. "value": 0.8999999761581421
  4426. },
  4427. {
  4428. "op": "replace",
  4429. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4430. "value": 0.8999999761581421
  4431. },
  4432. {
  4433. "op": "replace",
  4434. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4435. "value": 0.8999999761581421
  4436. }
  4437. ]
  4438. },
  4439. "Instance_[408784365876095]": {
  4440. "Source": "Prefabs/Apple.prefab",
  4441. "Patches": [
  4442. {
  4443. "op": "replace",
  4444. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4445. "value": "../Entity_[408427883590527]"
  4446. },
  4447. {
  4448. "op": "replace",
  4449. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4450. "value": 0.583662211894989
  4451. },
  4452. {
  4453. "op": "replace",
  4454. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4455. "value": -0.42961162328720093
  4456. },
  4457. {
  4458. "op": "replace",
  4459. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4460. "value": 1.3775520324707031
  4461. },
  4462. {
  4463. "op": "replace",
  4464. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  4465. "value": -41.693660736083984
  4466. },
  4467. {
  4468. "op": "replace",
  4469. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  4470. "value": -0.4240313172340393
  4471. },
  4472. {
  4473. "op": "replace",
  4474. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4475. "value": -177.46246337890625
  4476. },
  4477. {
  4478. "op": "replace",
  4479. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4480. "value": 0.8999999761581421
  4481. },
  4482. {
  4483. "op": "replace",
  4484. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4485. "value": 0.8999999761581421
  4486. },
  4487. {
  4488. "op": "replace",
  4489. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4490. "value": 0.8999999761581421
  4491. }
  4492. ]
  4493. },
  4494. "Instance_[408797250777983]": {
  4495. "Source": "Prefabs/Apple.prefab",
  4496. "Patches": [
  4497. {
  4498. "op": "replace",
  4499. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4500. "value": "../ContainerEntity"
  4501. },
  4502. {
  4503. "op": "replace",
  4504. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4505. "value": 0.2892940938472748
  4506. },
  4507. {
  4508. "op": "replace",
  4509. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4510. "value": 0.39071401953697205
  4511. },
  4512. {
  4513. "op": "replace",
  4514. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4515. "value": 0.8872771859169006
  4516. },
  4517. {
  4518. "op": "replace",
  4519. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4520. "value": -132.94012451171875
  4521. },
  4522. {
  4523. "op": "replace",
  4524. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4525. "value": 0.8999999761581421
  4526. },
  4527. {
  4528. "op": "replace",
  4529. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4530. "value": 0.8999999761581421
  4531. },
  4532. {
  4533. "op": "replace",
  4534. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4535. "value": 0.8999999761581421
  4536. }
  4537. ]
  4538. },
  4539. "Instance_[421093742146431]": {
  4540. "Source": "Prefabs/GrassTileMed.prefab",
  4541. "Patches": [
  4542. {
  4543. "op": "replace",
  4544. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Parent Entity",
  4545. "value": "../ContainerEntity"
  4546. },
  4547. {
  4548. "op": "replace",
  4549. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/Translate/0",
  4550. "value": 0.019669830799102783
  4551. },
  4552. {
  4553. "op": "replace",
  4554. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/Translate/1",
  4555. "value": -0.010040462017059326
  4556. },
  4557. {
  4558. "op": "replace",
  4559. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/Translate/2",
  4560. "value": -0.03808104991912842
  4561. },
  4562. {
  4563. "op": "replace",
  4564. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/UniformScale",
  4565. "value": 0.5
  4566. }
  4567. ]
  4568. },
  4569. "Instance_[543280202889653]": {
  4570. "Source": "Prefabs/Apple.prefab",
  4571. "Patches": [
  4572. {
  4573. "op": "replace",
  4574. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4575. "value": "../ContainerEntity"
  4576. },
  4577. {
  4578. "op": "replace",
  4579. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4580. "value": -0.31359222531318665
  4581. },
  4582. {
  4583. "op": "replace",
  4584. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4585. "value": -0.3475686013698578
  4586. },
  4587. {
  4588. "op": "replace",
  4589. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4590. "value": 1.4093260765075684
  4591. },
  4592. {
  4593. "op": "replace",
  4594. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4595. "value": -178.66636657714844
  4596. },
  4597. {
  4598. "op": "replace",
  4599. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4600. "value": 0.8999999761581421
  4601. },
  4602. {
  4603. "op": "replace",
  4604. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4605. "value": 0.8999999761581421
  4606. },
  4607. {
  4608. "op": "replace",
  4609. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4610. "value": 0.8999999761581421
  4611. }
  4612. ]
  4613. },
  4614. "Instance_[543293087791541]": {
  4615. "Source": "Prefabs/Apple.prefab",
  4616. "Patches": [
  4617. {
  4618. "op": "replace",
  4619. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4620. "value": "../ContainerEntity"
  4621. },
  4622. {
  4623. "op": "replace",
  4624. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4625. "value": -0.14629094302654266
  4626. },
  4627. {
  4628. "op": "replace",
  4629. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4630. "value": -0.43553057312965393
  4631. },
  4632. {
  4633. "op": "replace",
  4634. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4635. "value": 1.0460083484649658
  4636. },
  4637. {
  4638. "op": "replace",
  4639. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4640. "value": -178.66636657714844
  4641. },
  4642. {
  4643. "op": "replace",
  4644. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4645. "value": 0.8999999761581421
  4646. },
  4647. {
  4648. "op": "replace",
  4649. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4650. "value": 0.8999999761581421
  4651. },
  4652. {
  4653. "op": "replace",
  4654. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4655. "value": 0.8999999761581421
  4656. }
  4657. ]
  4658. },
  4659. "Instance_[543305972693429]": {
  4660. "Source": "Prefabs/Apple.prefab",
  4661. "Patches": [
  4662. {
  4663. "op": "replace",
  4664. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4665. "value": "../ContainerEntity"
  4666. },
  4667. {
  4668. "op": "replace",
  4669. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4670. "value": 0.054677173495292664
  4671. },
  4672. {
  4673. "op": "replace",
  4674. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4675. "value": 0.34439414739608765
  4676. },
  4677. {
  4678. "op": "replace",
  4679. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4680. "value": 1.2811453342437744
  4681. },
  4682. {
  4683. "op": "replace",
  4684. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4685. "value": -178.66636657714844
  4686. },
  4687. {
  4688. "op": "replace",
  4689. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4690. "value": 0.8999999761581421
  4691. },
  4692. {
  4693. "op": "replace",
  4694. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4695. "value": 0.8999999761581421
  4696. },
  4697. {
  4698. "op": "replace",
  4699. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4700. "value": 0.8999999761581421
  4701. }
  4702. ]
  4703. },
  4704. "Instance_[543318857595317]": {
  4705. "Source": "Prefabs/Apple.prefab",
  4706. "Patches": [
  4707. {
  4708. "op": "replace",
  4709. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4710. "value": "../ContainerEntity"
  4711. },
  4712. {
  4713. "op": "replace",
  4714. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4715. "value": -0.08969463407993317
  4716. },
  4717. {
  4718. "op": "replace",
  4719. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4720. "value": -0.12806500494480133
  4721. },
  4722. {
  4723. "op": "replace",
  4724. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4725. "value": 1.5594239234924316
  4726. },
  4727. {
  4728. "op": "replace",
  4729. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4730. "value": -178.66636657714844
  4731. },
  4732. {
  4733. "op": "replace",
  4734. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4735. "value": 0.8999999761581421
  4736. },
  4737. {
  4738. "op": "replace",
  4739. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4740. "value": 0.8999999761581421
  4741. },
  4742. {
  4743. "op": "replace",
  4744. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4745. "value": 0.8999999761581421
  4746. }
  4747. ]
  4748. },
  4749. "Instance_[543331742497205]": {
  4750. "Source": "Prefabs/Apple.prefab",
  4751. "Patches": [
  4752. {
  4753. "op": "replace",
  4754. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4755. "value": "../ContainerEntity"
  4756. },
  4757. {
  4758. "op": "replace",
  4759. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4760. "value": -0.1917058676481247
  4761. },
  4762. {
  4763. "op": "replace",
  4764. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4765. "value": -0.042837779968976974
  4766. },
  4767. {
  4768. "op": "replace",
  4769. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4770. "value": 1.9802011251449585
  4771. },
  4772. {
  4773. "op": "replace",
  4774. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4775. "value": -178.66636657714844
  4776. },
  4777. {
  4778. "op": "replace",
  4779. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4780. "value": 0.8999999761581421
  4781. },
  4782. {
  4783. "op": "replace",
  4784. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4785. "value": 0.8999999761581421
  4786. },
  4787. {
  4788. "op": "replace",
  4789. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4790. "value": 0.8999999761581421
  4791. }
  4792. ]
  4793. },
  4794. "Instance_[543344627399093]": {
  4795. "Source": "Prefabs/Apple.prefab",
  4796. "Patches": [
  4797. {
  4798. "op": "replace",
  4799. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4800. "value": "../ContainerEntity"
  4801. },
  4802. {
  4803. "op": "replace",
  4804. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4805. "value": -0.047236498445272446
  4806. },
  4807. {
  4808. "op": "replace",
  4809. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4810. "value": 1.5999886989593506
  4811. },
  4812. {
  4813. "op": "replace",
  4814. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4815. "value": -178.66636657714844
  4816. },
  4817. {
  4818. "op": "replace",
  4819. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4820. "value": 0.8999999761581421
  4821. },
  4822. {
  4823. "op": "replace",
  4824. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4825. "value": 0.8999999761581421
  4826. },
  4827. {
  4828. "op": "replace",
  4829. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4830. "value": 0.8999999761581421
  4831. }
  4832. ]
  4833. },
  4834. "Instance_[543357512300981]": {
  4835. "Source": "Prefabs/Apple.prefab",
  4836. "Patches": [
  4837. {
  4838. "op": "replace",
  4839. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4840. "value": "../ContainerEntity"
  4841. },
  4842. {
  4843. "op": "replace",
  4844. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4845. "value": -0.2981537878513336
  4846. },
  4847. {
  4848. "op": "replace",
  4849. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4850. "value": 0.04278241842985153
  4851. },
  4852. {
  4853. "op": "replace",
  4854. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4855. "value": 0.819862961769104
  4856. },
  4857. {
  4858. "op": "replace",
  4859. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4860. "value": -178.66636657714844
  4861. },
  4862. {
  4863. "op": "replace",
  4864. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4865. "value": 0.8999999761581421
  4866. },
  4867. {
  4868. "op": "replace",
  4869. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4870. "value": 0.8999999761581421
  4871. },
  4872. {
  4873. "op": "replace",
  4874. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4875. "value": 0.8999999761581421
  4876. }
  4877. ]
  4878. },
  4879. "Instance_[543370397202869]": {
  4880. "Source": "Prefabs/Apple.prefab",
  4881. "Patches": [
  4882. {
  4883. "op": "replace",
  4884. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4885. "value": "../ContainerEntity"
  4886. },
  4887. {
  4888. "op": "replace",
  4889. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4890. "value": 0.37493592500686646
  4891. },
  4892. {
  4893. "op": "replace",
  4894. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4895. "value": -0.0700540542602539
  4896. },
  4897. {
  4898. "op": "replace",
  4899. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4900. "value": 0.7148736715316772
  4901. },
  4902. {
  4903. "op": "replace",
  4904. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4905. "value": -178.66636657714844
  4906. },
  4907. {
  4908. "op": "replace",
  4909. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4910. "value": 0.8999999761581421
  4911. },
  4912. {
  4913. "op": "replace",
  4914. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4915. "value": 0.8999999761581421
  4916. },
  4917. {
  4918. "op": "replace",
  4919. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4920. "value": 0.8999999761581421
  4921. }
  4922. ]
  4923. },
  4924. "Instance_[585856552927307]": {
  4925. "Source": "Prefabs/Apple.prefab",
  4926. "Patches": [
  4927. {
  4928. "op": "replace",
  4929. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4930. "value": "../ContainerEntity"
  4931. },
  4932. {
  4933. "op": "replace",
  4934. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4935. "value": -0.06243341788649559
  4936. },
  4937. {
  4938. "op": "replace",
  4939. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4940. "value": -0.21899017691612244
  4941. },
  4942. {
  4943. "op": "replace",
  4944. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4945. "value": 0.5951061248779297
  4946. },
  4947. {
  4948. "op": "replace",
  4949. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4950. "value": -27.970508575439453
  4951. },
  4952. {
  4953. "op": "replace",
  4954. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  4955. "value": 0.8999999761581421
  4956. },
  4957. {
  4958. "op": "replace",
  4959. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  4960. "value": 0.8999999761581421
  4961. },
  4962. {
  4963. "op": "replace",
  4964. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  4965. "value": 0.8999999761581421
  4966. }
  4967. ]
  4968. },
  4969. "Instance_[585869437829195]": {
  4970. "Source": "Prefabs/Apple.prefab",
  4971. "Patches": [
  4972. {
  4973. "op": "replace",
  4974. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  4975. "value": "../ContainerEntity"
  4976. },
  4977. {
  4978. "op": "replace",
  4979. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  4980. "value": -0.2051631361246109
  4981. },
  4982. {
  4983. "op": "replace",
  4984. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  4985. "value": 0.3450286090373993
  4986. },
  4987. {
  4988. "op": "replace",
  4989. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  4990. "value": 0.7198629975318909
  4991. },
  4992. {
  4993. "op": "replace",
  4994. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4995. "value": -178.66636657714844
  4996. },
  4997. {
  4998. "op": "replace",
  4999. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  5000. "value": 0.8999999761581421
  5001. },
  5002. {
  5003. "op": "replace",
  5004. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  5005. "value": 0.8999999761581421
  5006. },
  5007. {
  5008. "op": "replace",
  5009. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  5010. "value": 0.8999999761581421
  5011. }
  5012. ]
  5013. },
  5014. "Instance_[585882322731083]": {
  5015. "Source": "Prefabs/Apple.prefab",
  5016. "Patches": [
  5017. {
  5018. "op": "replace",
  5019. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  5020. "value": "../ContainerEntity"
  5021. },
  5022. {
  5023. "op": "replace",
  5024. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  5025. "value": -0.20283570885658264
  5026. },
  5027. {
  5028. "op": "replace",
  5029. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  5030. "value": 0.245055690407753
  5031. },
  5032. {
  5033. "op": "replace",
  5034. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  5035. "value": -178.66636657714844
  5036. },
  5037. {
  5038. "op": "replace",
  5039. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  5040. "value": 0.8999999761581421
  5041. },
  5042. {
  5043. "op": "replace",
  5044. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  5045. "value": 0.8999999761581421
  5046. },
  5047. {
  5048. "op": "replace",
  5049. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  5050. "value": 0.8999999761581421
  5051. }
  5052. ]
  5053. },
  5054. "Instance_[585895207632971]": {
  5055. "Source": "Prefabs/Apple.prefab",
  5056. "Patches": [
  5057. {
  5058. "op": "replace",
  5059. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  5060. "value": "../ContainerEntity"
  5061. },
  5062. {
  5063. "op": "replace",
  5064. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  5065. "value": -0.002889871597290039
  5066. },
  5067. {
  5068. "op": "replace",
  5069. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  5070. "value": 0.24971053004264832
  5071. },
  5072. {
  5073. "op": "replace",
  5074. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  5075. "value": 1.5198630094528198
  5076. },
  5077. {
  5078. "op": "replace",
  5079. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  5080. "value": -178.66636657714844
  5081. },
  5082. {
  5083. "op": "replace",
  5084. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/0",
  5085. "value": 0.8999999761581421
  5086. },
  5087. {
  5088. "op": "replace",
  5089. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/1",
  5090. "value": 0.8999999761581421
  5091. },
  5092. {
  5093. "op": "replace",
  5094. "path": "/Entities/Entity_[532883711761236]/Components/Component_[17352323353881558252]/ShapeConfiguration/Sphere/Scale/2",
  5095. "value": 0.8999999761581421
  5096. }
  5097. ]
  5098. }
  5099. }
  5100. }