AppleTree.prefab 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005
  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_[8148146872807561086]": {
  1472. "$type": "EditorPendingCompositionComponent",
  1473. "Id": 8148146872807561086
  1474. }
  1475. }
  1476. }
  1477. },
  1478. "Instances": {
  1479. "Instance_[1548645907238462]": {
  1480. "Source": "Prefabs/Apple.prefab",
  1481. "Patches": [
  1482. {
  1483. "op": "replace",
  1484. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1485. "value": "../Entity_[394671103341439]"
  1486. },
  1487. {
  1488. "op": "replace",
  1489. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1490. "value": 0.6402419805526733
  1491. },
  1492. {
  1493. "op": "replace",
  1494. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1495. "value": 0.06055593490600586
  1496. },
  1497. {
  1498. "op": "replace",
  1499. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1500. "value": 2.1406707763671875
  1501. },
  1502. {
  1503. "op": "replace",
  1504. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1505. "value": 62.772701263427734
  1506. }
  1507. ]
  1508. },
  1509. "Instance_[394645333537663]": {
  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.6034330725669861
  1521. },
  1522. {
  1523. "op": "replace",
  1524. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1525. "value": -0.010982632637023926
  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/0",
  1535. "value": -41.693355560302734
  1536. },
  1537. {
  1538. "op": "replace",
  1539. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1540. "value": -0.4240433871746063
  1541. },
  1542. {
  1543. "op": "replace",
  1544. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1545. "value": -177.46250915527344
  1546. }
  1547. ]
  1548. },
  1549. "Instance_[394658218439551]": {
  1550. "Source": "Prefabs/Apple.prefab",
  1551. "Patches": [
  1552. {
  1553. "op": "replace",
  1554. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1555. "value": "../Entity_[394671103341439]"
  1556. },
  1557. {
  1558. "op": "replace",
  1559. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1560. "value": 0.5637900829315186
  1561. },
  1562. {
  1563. "op": "replace",
  1564. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1565. "value": 0.03933096677064896
  1566. },
  1567. {
  1568. "op": "replace",
  1569. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1570. "value": 2.142101526260376
  1571. },
  1572. {
  1573. "op": "replace",
  1574. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1575. "value": -10.145334243774414
  1576. },
  1577. {
  1578. "op": "replace",
  1579. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1580. "value": 34.67568588256836
  1581. },
  1582. {
  1583. "op": "replace",
  1584. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1585. "value": -136.8233184814453
  1586. }
  1587. ]
  1588. },
  1589. "Instance_[394679693276031]": {
  1590. "Source": "Prefabs/Apple.prefab",
  1591. "Patches": [
  1592. {
  1593. "op": "replace",
  1594. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1595. "value": "../Entity_[394718347981695]"
  1596. },
  1597. {
  1598. "op": "replace",
  1599. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1600. "value": 0.7402406334877014
  1601. },
  1602. {
  1603. "op": "replace",
  1604. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1605. "value": -0.17920494079589844
  1606. },
  1607. {
  1608. "op": "replace",
  1609. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1610. "value": 1.7406708002090454
  1611. },
  1612. {
  1613. "op": "replace",
  1614. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1615. "value": 62.772701263427734
  1616. }
  1617. ]
  1618. },
  1619. "Instance_[394692578177919]": {
  1620. "Source": "Prefabs/Apple.prefab",
  1621. "Patches": [
  1622. {
  1623. "op": "replace",
  1624. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1625. "value": "../Entity_[394718347981695]"
  1626. },
  1627. {
  1628. "op": "replace",
  1629. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1630. "value": 0.5974910259246826
  1631. },
  1632. {
  1633. "op": "replace",
  1634. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1635. "value": 0.0030963122844696045
  1636. },
  1637. {
  1638. "op": "replace",
  1639. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1640. "value": 1.674778699874878
  1641. },
  1642. {
  1643. "op": "replace",
  1644. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1645. "value": 16.596332550048828
  1646. },
  1647. {
  1648. "op": "replace",
  1649. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1650. "value": 13.519903182983398
  1651. },
  1652. {
  1653. "op": "replace",
  1654. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1655. "value": 59.38729476928711
  1656. }
  1657. ]
  1658. },
  1659. "Instance_[394705463079807]": {
  1660. "Source": "Prefabs/Apple.prefab",
  1661. "Patches": [
  1662. {
  1663. "op": "replace",
  1664. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1665. "value": "../ContainerEntity"
  1666. },
  1667. {
  1668. "op": "replace",
  1669. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1670. "value": 0.3258933424949646
  1671. },
  1672. {
  1673. "op": "replace",
  1674. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1675. "value": -0.15160593390464783
  1676. },
  1677. {
  1678. "op": "replace",
  1679. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1680. "value": 1.9105675220489504
  1681. },
  1682. {
  1683. "op": "replace",
  1684. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1685. "value": 62.772701263427734
  1686. }
  1687. ]
  1688. },
  1689. "Instance_[396054082810751]": {
  1690. "Source": "Prefabs/Apple.prefab",
  1691. "Patches": [
  1692. {
  1693. "op": "replace",
  1694. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1695. "value": "../Entity_[396049787843455]"
  1696. },
  1697. {
  1698. "op": "replace",
  1699. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1700. "value": 0.5637900829315186
  1701. },
  1702. {
  1703. "op": "replace",
  1704. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1705. "value": 0.03933096677064896
  1706. },
  1707. {
  1708. "op": "replace",
  1709. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1710. "value": 2.142101526260376
  1711. },
  1712. {
  1713. "op": "replace",
  1714. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1715. "value": -10.145334243774414
  1716. },
  1717. {
  1718. "op": "replace",
  1719. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1720. "value": 34.67568588256836
  1721. },
  1722. {
  1723. "op": "replace",
  1724. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1725. "value": -136.8233184814453
  1726. }
  1727. ]
  1728. },
  1729. "Instance_[396058377778047]": {
  1730. "Source": "Prefabs/Apple.prefab",
  1731. "Patches": [
  1732. {
  1733. "op": "replace",
  1734. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1735. "value": "../Entity_[396049787843455]"
  1736. },
  1737. {
  1738. "op": "replace",
  1739. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1740. "value": 0.6034330725669861
  1741. },
  1742. {
  1743. "op": "replace",
  1744. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1745. "value": -0.010982632637023926
  1746. },
  1747. {
  1748. "op": "replace",
  1749. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1750. "value": 2.1406707763671875
  1751. },
  1752. {
  1753. "op": "replace",
  1754. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1755. "value": -41.693355560302734
  1756. },
  1757. {
  1758. "op": "replace",
  1759. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1760. "value": -0.4240433871746063
  1761. },
  1762. {
  1763. "op": "replace",
  1764. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1765. "value": -177.46250915527344
  1766. }
  1767. ]
  1768. },
  1769. "Instance_[396062672745343]": {
  1770. "Source": "Prefabs/Apple.prefab",
  1771. "Patches": [
  1772. {
  1773. "op": "replace",
  1774. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1775. "value": "../Entity_[396049787843455]"
  1776. },
  1777. {
  1778. "op": "replace",
  1779. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1780. "value": 0.6402419805526733
  1781. },
  1782. {
  1783. "op": "replace",
  1784. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1785. "value": 0.06055593490600586
  1786. },
  1787. {
  1788. "op": "replace",
  1789. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1790. "value": 2.1406707763671875
  1791. },
  1792. {
  1793. "op": "replace",
  1794. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1795. "value": 62.772701263427734
  1796. }
  1797. ]
  1798. },
  1799. "Instance_[396101327451007]": {
  1800. "Source": "Prefabs/Apple.prefab",
  1801. "Patches": [
  1802. {
  1803. "op": "replace",
  1804. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1805. "value": "../Entity_[396097032483711]"
  1806. },
  1807. {
  1808. "op": "replace",
  1809. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1810. "value": 0.5637899041175842
  1811. },
  1812. {
  1813. "op": "replace",
  1814. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1815. "value": 0.039330899715423584
  1816. },
  1817. {
  1818. "op": "replace",
  1819. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1820. "value": 2.142101764678955
  1821. },
  1822. {
  1823. "op": "replace",
  1824. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1825. "value": -10.145357131958008
  1826. },
  1827. {
  1828. "op": "replace",
  1829. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1830. "value": 34.67571258544922
  1831. },
  1832. {
  1833. "op": "replace",
  1834. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1835. "value": -136.82330322265625
  1836. }
  1837. ]
  1838. },
  1839. "Instance_[396105622418303]": {
  1840. "Source": "Prefabs/Apple.prefab",
  1841. "Patches": [
  1842. {
  1843. "op": "replace",
  1844. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1845. "value": "../Entity_[396097032483711]"
  1846. },
  1847. {
  1848. "op": "replace",
  1849. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1850. "value": 0.6402420401573181
  1851. },
  1852. {
  1853. "op": "replace",
  1854. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1855. "value": 0.06055596470832825
  1856. },
  1857. {
  1858. "op": "replace",
  1859. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1860. "value": 2.1406707763671875
  1861. },
  1862. {
  1863. "op": "replace",
  1864. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1865. "value": 0.000003273011543569737
  1866. },
  1867. {
  1868. "op": "replace",
  1869. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1870. "value": -0.000007004256531217834
  1871. },
  1872. {
  1873. "op": "replace",
  1874. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1875. "value": 62.77271270751953
  1876. }
  1877. ]
  1878. },
  1879. "Instance_[396109917385599]": {
  1880. "Source": "Prefabs/Apple.prefab",
  1881. "Patches": [
  1882. {
  1883. "op": "replace",
  1884. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1885. "value": "../Entity_[396097032483711]"
  1886. },
  1887. {
  1888. "op": "replace",
  1889. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1890. "value": 0.6034329533576965
  1891. },
  1892. {
  1893. "op": "replace",
  1894. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1895. "value": -0.01098257303237915
  1896. },
  1897. {
  1898. "op": "replace",
  1899. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1900. "value": 2.1406705379486084
  1901. },
  1902. {
  1903. "op": "replace",
  1904. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1905. "value": -41.69358444213867
  1906. },
  1907. {
  1908. "op": "replace",
  1909. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1910. "value": -0.4240342080593109
  1911. },
  1912. {
  1913. "op": "replace",
  1914. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1915. "value": -177.4624481201172
  1916. }
  1917. ]
  1918. },
  1919. "Instance_[396148572091263]": {
  1920. "Source": "Prefabs/Apple.prefab",
  1921. "Patches": [
  1922. {
  1923. "op": "replace",
  1924. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1925. "value": "../Entity_[396144277123967]"
  1926. },
  1927. {
  1928. "op": "replace",
  1929. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1930. "value": 0.7291615605354309
  1931. },
  1932. {
  1933. "op": "replace",
  1934. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  1935. "value": 0.014803588390350342
  1936. },
  1937. {
  1938. "op": "replace",
  1939. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1940. "value": 1.8406699895858765
  1941. },
  1942. {
  1943. "op": "replace",
  1944. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1945. "value": 0.000003273011543569737
  1946. },
  1947. {
  1948. "op": "replace",
  1949. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1950. "value": -0.000007004256531217834
  1951. },
  1952. {
  1953. "op": "replace",
  1954. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1955. "value": 62.77271270751953
  1956. }
  1957. ]
  1958. },
  1959. "Instance_[396152867058559]": {
  1960. "Source": "Prefabs/Apple.prefab",
  1961. "Patches": [
  1962. {
  1963. "op": "replace",
  1964. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  1965. "value": "../Entity_[396144277123967]"
  1966. },
  1967. {
  1968. "op": "replace",
  1969. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  1970. "value": 0.3924889862537384
  1971. },
  1972. {
  1973. "op": "replace",
  1974. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  1975. "value": 1.7928158044815063
  1976. },
  1977. {
  1978. "op": "replace",
  1979. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  1980. "value": -10.145357131958008
  1981. },
  1982. {
  1983. "op": "replace",
  1984. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  1985. "value": 34.67571258544922
  1986. },
  1987. {
  1988. "op": "replace",
  1989. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  1990. "value": -136.82330322265625
  1991. }
  1992. ]
  1993. },
  1994. "Instance_[396157162025855]": {
  1995. "Source": "Prefabs/Apple.prefab",
  1996. "Patches": [
  1997. {
  1998. "op": "replace",
  1999. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2000. "value": "../Entity_[396144277123967]"
  2001. },
  2002. {
  2003. "op": "replace",
  2004. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2005. "value": 0.6049131751060486
  2006. },
  2007. {
  2008. "op": "replace",
  2009. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2010. "value": -0.14400836825370789
  2011. },
  2012. {
  2013. "op": "replace",
  2014. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2015. "value": 1.991332411766052
  2016. },
  2017. {
  2018. "op": "replace",
  2019. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2020. "value": -41.69358444213867
  2021. },
  2022. {
  2023. "op": "replace",
  2024. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2025. "value": -0.4240342080593109
  2026. },
  2027. {
  2028. "op": "replace",
  2029. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2030. "value": -177.4624481201172
  2031. }
  2032. ]
  2033. },
  2034. "Instance_[396195816731519]": {
  2035. "Source": "Prefabs/Apple.prefab",
  2036. "Patches": [
  2037. {
  2038. "op": "replace",
  2039. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2040. "value": "../Entity_[396191521764223]"
  2041. },
  2042. {
  2043. "op": "replace",
  2044. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2045. "value": 0.6402419805526733
  2046. },
  2047. {
  2048. "op": "replace",
  2049. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2050. "value": 0.06055587530136109
  2051. },
  2052. {
  2053. "op": "replace",
  2054. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2055. "value": 2.1406710147857666
  2056. },
  2057. {
  2058. "op": "replace",
  2059. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2060. "value": 0.000003273011543569737
  2061. },
  2062. {
  2063. "op": "replace",
  2064. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2065. "value": -0.000007004256531217834
  2066. },
  2067. {
  2068. "op": "replace",
  2069. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2070. "value": 62.77271270751953
  2071. }
  2072. ]
  2073. },
  2074. "Instance_[396200111698815]": {
  2075. "Source": "Prefabs/Apple.prefab",
  2076. "Patches": [
  2077. {
  2078. "op": "replace",
  2079. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2080. "value": "../Entity_[396191521764223]"
  2081. },
  2082. {
  2083. "op": "replace",
  2084. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2085. "value": 0.5637897253036499
  2086. },
  2087. {
  2088. "op": "replace",
  2089. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2090. "value": 0.03933081030845642
  2091. },
  2092. {
  2093. "op": "replace",
  2094. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2095. "value": 2.142101764678955
  2096. },
  2097. {
  2098. "op": "replace",
  2099. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2100. "value": -10.145357131958008
  2101. },
  2102. {
  2103. "op": "replace",
  2104. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2105. "value": 34.67571258544922
  2106. },
  2107. {
  2108. "op": "replace",
  2109. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2110. "value": -136.82330322265625
  2111. }
  2112. ]
  2113. },
  2114. "Instance_[396204406666111]": {
  2115. "Source": "Prefabs/Apple.prefab",
  2116. "Patches": [
  2117. {
  2118. "op": "replace",
  2119. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2120. "value": "../Entity_[396191521764223]"
  2121. },
  2122. {
  2123. "op": "replace",
  2124. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2125. "value": 0.6034330129623413
  2126. },
  2127. {
  2128. "op": "replace",
  2129. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2130. "value": -0.01098257303237915
  2131. },
  2132. {
  2133. "op": "replace",
  2134. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2135. "value": 2.1406707763671875
  2136. },
  2137. {
  2138. "op": "replace",
  2139. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2140. "value": -41.69358444213867
  2141. },
  2142. {
  2143. "op": "replace",
  2144. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2145. "value": -0.4240342080593109
  2146. },
  2147. {
  2148. "op": "replace",
  2149. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2150. "value": -177.4624481201172
  2151. }
  2152. ]
  2153. },
  2154. "Instance_[396243061371775]": {
  2155. "Source": "Prefabs/Apple.prefab",
  2156. "Patches": [
  2157. {
  2158. "op": "replace",
  2159. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2160. "value": "../Entity_[396238766404479]"
  2161. },
  2162. {
  2163. "op": "replace",
  2164. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2165. "value": 0.5637896060943604
  2166. },
  2167. {
  2168. "op": "replace",
  2169. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2170. "value": 0.03933081030845642
  2171. },
  2172. {
  2173. "op": "replace",
  2174. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2175. "value": 2.142101764678955
  2176. },
  2177. {
  2178. "op": "replace",
  2179. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2180. "value": -10.145357131958008
  2181. },
  2182. {
  2183. "op": "replace",
  2184. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2185. "value": 34.67571258544922
  2186. },
  2187. {
  2188. "op": "replace",
  2189. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2190. "value": -136.82330322265625
  2191. }
  2192. ]
  2193. },
  2194. "Instance_[396247356339071]": {
  2195. "Source": "Prefabs/Apple.prefab",
  2196. "Patches": [
  2197. {
  2198. "op": "replace",
  2199. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2200. "value": "../Entity_[396238766404479]"
  2201. },
  2202. {
  2203. "op": "replace",
  2204. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2205. "value": 0.640241801738739
  2206. },
  2207. {
  2208. "op": "replace",
  2209. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2210. "value": 0.06055587530136109
  2211. },
  2212. {
  2213. "op": "replace",
  2214. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2215. "value": 2.1406705379486084
  2216. },
  2217. {
  2218. "op": "replace",
  2219. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2220. "value": 0.000003273011543569737
  2221. },
  2222. {
  2223. "op": "replace",
  2224. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2225. "value": -0.000007004256531217834
  2226. },
  2227. {
  2228. "op": "replace",
  2229. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2230. "value": 62.77271270751953
  2231. }
  2232. ]
  2233. },
  2234. "Instance_[396251651306367]": {
  2235. "Source": "Prefabs/Apple.prefab",
  2236. "Patches": [
  2237. {
  2238. "op": "replace",
  2239. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2240. "value": "../Entity_[396238766404479]"
  2241. },
  2242. {
  2243. "op": "replace",
  2244. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2245. "value": 0.6034331917762756
  2246. },
  2247. {
  2248. "op": "replace",
  2249. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2250. "value": -0.010982543230056764
  2251. },
  2252. {
  2253. "op": "replace",
  2254. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2255. "value": 2.1406707763671875
  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. },
  2274. "Instance_[396290306012031]": {
  2275. "Source": "Prefabs/Apple.prefab",
  2276. "Patches": [
  2277. {
  2278. "op": "replace",
  2279. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2280. "value": "../Entity_[396286011044735]"
  2281. },
  2282. {
  2283. "op": "replace",
  2284. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2285. "value": 0.7143825888633728
  2286. },
  2287. {
  2288. "op": "replace",
  2289. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2290. "value": -0.13575968146324158
  2291. },
  2292. {
  2293. "op": "replace",
  2294. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2295. "value": 2.1406707763671875
  2296. },
  2297. {
  2298. "op": "replace",
  2299. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2300. "value": 16.596332550048828
  2301. },
  2302. {
  2303. "op": "replace",
  2304. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2305. "value": 13.519903182983398
  2306. },
  2307. {
  2308. "op": "replace",
  2309. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2310. "value": 59.38729476928711
  2311. }
  2312. ]
  2313. },
  2314. "Instance_[396294600979327]": {
  2315. "Source": "Prefabs/Apple.prefab",
  2316. "Patches": [
  2317. {
  2318. "op": "replace",
  2319. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2320. "value": "../Entity_[396286011044735]"
  2321. },
  2322. {
  2323. "op": "replace",
  2324. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2325. "value": 0.7402406334877014
  2326. },
  2327. {
  2328. "op": "replace",
  2329. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2330. "value": -0.17920494079589844
  2331. },
  2332. {
  2333. "op": "replace",
  2334. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2335. "value": 2.1406707763671875
  2336. },
  2337. {
  2338. "op": "replace",
  2339. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2340. "value": 62.772701263427734
  2341. }
  2342. ]
  2343. },
  2344. "Instance_[396324665750399]": {
  2345. "Source": "Prefabs/Apple.prefab",
  2346. "Patches": [
  2347. {
  2348. "op": "replace",
  2349. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2350. "value": "../Entity_[396320370783103]"
  2351. },
  2352. {
  2353. "op": "replace",
  2354. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2355. "value": 0.6970729231834412
  2356. },
  2357. {
  2358. "op": "replace",
  2359. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2360. "value": -0.04453292489051819
  2361. },
  2362. {
  2363. "op": "replace",
  2364. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2365. "value": 2.240670680999756
  2366. },
  2367. {
  2368. "op": "replace",
  2369. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2370. "value": 62.772701263427734
  2371. }
  2372. ]
  2373. },
  2374. "Instance_[396328960717695]": {
  2375. "Source": "Prefabs/Apple.prefab",
  2376. "Patches": [
  2377. {
  2378. "op": "replace",
  2379. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2380. "value": "../Entity_[396320370783103]"
  2381. },
  2382. {
  2383. "op": "replace",
  2384. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2385. "value": 0.5371913313865662
  2386. },
  2387. {
  2388. "op": "replace",
  2389. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2390. "value": 0.018380165100097656
  2391. },
  2392. {
  2393. "op": "replace",
  2394. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2395. "value": 1.801783800125122
  2396. },
  2397. {
  2398. "op": "replace",
  2399. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2400. "value": 16.596332550048828
  2401. },
  2402. {
  2403. "op": "replace",
  2404. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2405. "value": 13.519903182983398
  2406. },
  2407. {
  2408. "op": "replace",
  2409. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2410. "value": 59.38729476928711
  2411. }
  2412. ]
  2413. },
  2414. "Instance_[401641835262847]": {
  2415. "Source": "Prefabs/Apple.prefab",
  2416. "Patches": [
  2417. {
  2418. "op": "replace",
  2419. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2420. "value": "../ContainerEntity"
  2421. },
  2422. {
  2423. "op": "replace",
  2424. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2425. "value": 0.07925423979759216
  2426. },
  2427. {
  2428. "op": "replace",
  2429. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2430. "value": -0.10082422196865082
  2431. },
  2432. {
  2433. "op": "replace",
  2434. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2435. "value": 2.050983190536499
  2436. },
  2437. {
  2438. "op": "replace",
  2439. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2440. "value": -87.92320251464844
  2441. }
  2442. ]
  2443. },
  2444. "Instance_[401654720164735]": {
  2445. "Source": "Prefabs/Apple.prefab",
  2446. "Patches": [
  2447. {
  2448. "op": "replace",
  2449. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2450. "value": "../ContainerEntity"
  2451. },
  2452. {
  2453. "op": "replace",
  2454. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2455. "value": 0.0415416955947876
  2456. },
  2457. {
  2458. "op": "replace",
  2459. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2460. "value": 0.1251221001148224
  2461. },
  2462. {
  2463. "op": "replace",
  2464. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2465. "value": 2.0523018836975098
  2466. },
  2467. {
  2468. "op": "replace",
  2469. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2470. "value": -132.94012451171875
  2471. }
  2472. ]
  2473. },
  2474. "Instance_[401667605066623]": {
  2475. "Source": "Prefabs/Apple.prefab",
  2476. "Patches": [
  2477. {
  2478. "op": "replace",
  2479. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2480. "value": "../ContainerEntity"
  2481. },
  2482. {
  2483. "op": "replace",
  2484. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2485. "value": -0.13133928179740906
  2486. },
  2487. {
  2488. "op": "replace",
  2489. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2490. "value": 0.26237866282463074
  2491. },
  2492. {
  2493. "op": "replace",
  2494. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2495. "value": 1.3229258060455322
  2496. },
  2497. {
  2498. "op": "replace",
  2499. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2500. "value": -178.66636657714844
  2501. }
  2502. ]
  2503. },
  2504. "Instance_[401680489968511]": {
  2505. "Source": "Prefabs/Apple.prefab",
  2506. "Patches": [
  2507. {
  2508. "op": "replace",
  2509. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2510. "value": "../ContainerEntity"
  2511. },
  2512. {
  2513. "op": "replace",
  2514. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2515. "value": 0.06797611713409424
  2516. },
  2517. {
  2518. "op": "replace",
  2519. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2520. "value": -0.2507745623588562
  2521. },
  2522. {
  2523. "op": "replace",
  2524. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2525. "value": 0.957241952419281
  2526. },
  2527. {
  2528. "op": "replace",
  2529. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2530. "value": -178.66636657714844
  2531. }
  2532. ]
  2533. },
  2534. "Instance_[401693374870399]": {
  2535. "Source": "Prefabs/Apple.prefab",
  2536. "Patches": [
  2537. {
  2538. "op": "replace",
  2539. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2540. "value": "../ContainerEntity"
  2541. },
  2542. {
  2543. "op": "replace",
  2544. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2545. "value": 0.3661251366138458
  2546. },
  2547. {
  2548. "op": "replace",
  2549. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2550. "value": 0.3352438807487488
  2551. },
  2552. {
  2553. "op": "replace",
  2554. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2555. "value": 1.3878802061080933
  2556. },
  2557. {
  2558. "op": "replace",
  2559. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2560. "value": -27.970508575439453
  2561. }
  2562. ]
  2563. },
  2564. "Instance_[401706259772287]": {
  2565. "Source": "Prefabs/Apple.prefab",
  2566. "Patches": [
  2567. {
  2568. "op": "replace",
  2569. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2570. "value": "../ContainerEntity"
  2571. },
  2572. {
  2573. "op": "replace",
  2574. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2575. "value": -0.318167507648468
  2576. },
  2577. {
  2578. "op": "replace",
  2579. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2580. "value": -0.15104106068611145
  2581. },
  2582. {
  2583. "op": "replace",
  2584. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2585. "value": 1.2093260288238523
  2586. },
  2587. {
  2588. "op": "replace",
  2589. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2590. "value": -178.66636657714844
  2591. }
  2592. ]
  2593. },
  2594. "Instance_[401719144674175]": {
  2595. "Source": "Prefabs/Apple.prefab",
  2596. "Patches": [
  2597. {
  2598. "op": "replace",
  2599. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2600. "value": "../ContainerEntity"
  2601. },
  2602. {
  2603. "op": "replace",
  2604. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2605. "value": -0.19765403866767883
  2606. },
  2607. {
  2608. "op": "replace",
  2609. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2610. "value": -0.26040738821029663
  2611. },
  2612. {
  2613. "op": "replace",
  2614. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2615. "value": 0.6951061487197876
  2616. },
  2617. {
  2618. "op": "replace",
  2619. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2620. "value": -27.970508575439453
  2621. }
  2622. ]
  2623. },
  2624. "Instance_[408402113786751]": {
  2625. "Source": "Prefabs/Apple.prefab",
  2626. "Patches": [
  2627. {
  2628. "op": "replace",
  2629. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2630. "value": "../ContainerEntity"
  2631. },
  2632. {
  2633. "op": "replace",
  2634. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2635. "value": -0.0359843447804451
  2636. },
  2637. {
  2638. "op": "replace",
  2639. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2640. "value": 0.28406164050102234
  2641. },
  2642. {
  2643. "op": "replace",
  2644. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2645. "value": 1.7951061725616455
  2646. },
  2647. {
  2648. "op": "replace",
  2649. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2650. "value": -178.66636657714844
  2651. }
  2652. ]
  2653. },
  2654. "Instance_[408440768492415]": {
  2655. "Source": "Prefabs/Apple.prefab",
  2656. "Patches": [
  2657. {
  2658. "op": "replace",
  2659. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2660. "value": "../Entity_[408419293655935]"
  2661. },
  2662. {
  2663. "op": "replace",
  2664. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2665. "value": 0.6034330725669861
  2666. },
  2667. {
  2668. "op": "replace",
  2669. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2670. "value": -0.010982409119606018
  2671. },
  2672. {
  2673. "op": "replace",
  2674. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2675. "value": 2.1406707763671875
  2676. },
  2677. {
  2678. "op": "replace",
  2679. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2680. "value": -41.693363189697266
  2681. },
  2682. {
  2683. "op": "replace",
  2684. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2685. "value": -0.4240524172782898
  2686. },
  2687. {
  2688. "op": "replace",
  2689. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2690. "value": -177.46246337890625
  2691. }
  2692. ]
  2693. },
  2694. "Instance_[408445063459711]": {
  2695. "Source": "Prefabs/Apple.prefab",
  2696. "Patches": [
  2697. {
  2698. "op": "replace",
  2699. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2700. "value": "../Entity_[408414998688639]"
  2701. },
  2702. {
  2703. "op": "replace",
  2704. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2705. "value": 0.5637903213500977
  2706. },
  2707. {
  2708. "op": "replace",
  2709. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2710. "value": 0.03933107852935791
  2711. },
  2712. {
  2713. "op": "replace",
  2714. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2715. "value": 2.1421022415161133
  2716. },
  2717. {
  2718. "op": "replace",
  2719. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2720. "value": -10.145342826843262
  2721. },
  2722. {
  2723. "op": "replace",
  2724. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2725. "value": 34.675743103027344
  2726. },
  2727. {
  2728. "op": "replace",
  2729. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2730. "value": -136.8233184814453
  2731. }
  2732. ]
  2733. },
  2734. "Instance_[408449358427007]": {
  2735. "Source": "Prefabs/Apple.prefab",
  2736. "Patches": [
  2737. {
  2738. "op": "replace",
  2739. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2740. "value": "../Entity_[408432178557823]"
  2741. },
  2742. {
  2743. "op": "replace",
  2744. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2745. "value": 0.6402418613433838
  2746. },
  2747. {
  2748. "op": "replace",
  2749. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2750. "value": 0.06055524945259094
  2751. },
  2752. {
  2753. "op": "replace",
  2754. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2755. "value": 2.140671491622925
  2756. },
  2757. {
  2758. "op": "replace",
  2759. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2760. "value": -0.000009573574061505497
  2761. },
  2762. {
  2763. "op": "replace",
  2764. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2765. "value": 62.77272033691406
  2766. }
  2767. ]
  2768. },
  2769. "Instance_[408453653394303]": {
  2770. "Source": "Prefabs/Apple.prefab",
  2771. "Patches": [
  2772. {
  2773. "op": "replace",
  2774. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2775. "value": "../Entity_[408427883590527]"
  2776. },
  2777. {
  2778. "op": "replace",
  2779. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2780. "value": 0.5637892484664917
  2781. },
  2782. {
  2783. "op": "replace",
  2784. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2785. "value": 0.03933006525039673
  2786. },
  2787. {
  2788. "op": "replace",
  2789. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2790. "value": 2.1421010494232178
  2791. },
  2792. {
  2793. "op": "replace",
  2794. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2795. "value": -10.145389556884766
  2796. },
  2797. {
  2798. "op": "replace",
  2799. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2800. "value": 34.67579650878906
  2801. },
  2802. {
  2803. "op": "replace",
  2804. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2805. "value": -136.82337951660156
  2806. }
  2807. ]
  2808. },
  2809. "Instance_[408457948361599]": {
  2810. "Source": "Prefabs/Apple.prefab",
  2811. "Patches": [
  2812. {
  2813. "op": "replace",
  2814. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2815. "value": "../Entity_[408423588623231]"
  2816. },
  2817. {
  2818. "op": "replace",
  2819. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2820. "value": 0.7402403354644775
  2821. },
  2822. {
  2823. "op": "replace",
  2824. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2825. "value": -0.1792050451040268
  2826. },
  2827. {
  2828. "op": "replace",
  2829. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2830. "value": 2.1406707763671875
  2831. },
  2832. {
  2833. "op": "replace",
  2834. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2835. "value": 62.772605895996094
  2836. }
  2837. ]
  2838. },
  2839. "Instance_[408462243328895]": {
  2840. "Source": "Prefabs/Apple.prefab",
  2841. "Patches": [
  2842. {
  2843. "op": "replace",
  2844. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2845. "value": "../Entity_[408414998688639]"
  2846. },
  2847. {
  2848. "op": "replace",
  2849. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2850. "value": 0.6402420997619629
  2851. },
  2852. {
  2853. "op": "replace",
  2854. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2855. "value": 0.0605560839176178
  2856. },
  2857. {
  2858. "op": "replace",
  2859. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2860. "value": 2.140671730041504
  2861. },
  2862. {
  2863. "op": "replace",
  2864. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2865. "value": 0.000001377461785523337
  2866. },
  2867. {
  2868. "op": "replace",
  2869. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2870. "value": 0.0000018404717820885708
  2871. },
  2872. {
  2873. "op": "replace",
  2874. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2875. "value": 62.77271270751953
  2876. }
  2877. ]
  2878. },
  2879. "Instance_[408466538296191]": {
  2880. "Source": "Prefabs/Apple.prefab",
  2881. "Patches": [
  2882. {
  2883. "op": "replace",
  2884. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2885. "value": "../Entity_[408432178557823]"
  2886. },
  2887. {
  2888. "op": "replace",
  2889. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2890. "value": 0.603432834148407
  2891. },
  2892. {
  2893. "op": "replace",
  2894. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2895. "value": -0.010983258485794067
  2896. },
  2897. {
  2898. "op": "replace",
  2899. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2900. "value": 2.140671491622925
  2901. },
  2902. {
  2903. "op": "replace",
  2904. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2905. "value": -41.693660736083984
  2906. },
  2907. {
  2908. "op": "replace",
  2909. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2910. "value": -0.4240313172340393
  2911. },
  2912. {
  2913. "op": "replace",
  2914. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2915. "value": -177.46246337890625
  2916. }
  2917. ]
  2918. },
  2919. "Instance_[408470833263487]": {
  2920. "Source": "Prefabs/Apple.prefab",
  2921. "Patches": [
  2922. {
  2923. "op": "replace",
  2924. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2925. "value": "../Entity_[408427883590527]"
  2926. },
  2927. {
  2928. "op": "replace",
  2929. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2930. "value": 0.6034332513809204
  2931. },
  2932. {
  2933. "op": "replace",
  2934. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2935. "value": -0.010983332991600037
  2936. },
  2937. {
  2938. "op": "replace",
  2939. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2940. "value": 2.140671730041504
  2941. },
  2942. {
  2943. "op": "replace",
  2944. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2945. "value": -41.693660736083984
  2946. },
  2947. {
  2948. "op": "replace",
  2949. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2950. "value": -0.4240313172340393
  2951. },
  2952. {
  2953. "op": "replace",
  2954. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2955. "value": -177.46246337890625
  2956. }
  2957. ]
  2958. },
  2959. "Instance_[408475128230783]": {
  2960. "Source": "Prefabs/Apple.prefab",
  2961. "Patches": [
  2962. {
  2963. "op": "replace",
  2964. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  2965. "value": "../Entity_[408436473525119]"
  2966. },
  2967. {
  2968. "op": "replace",
  2969. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  2970. "value": 0.6034329533576965
  2971. },
  2972. {
  2973. "op": "replace",
  2974. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  2975. "value": -0.010983288288116457
  2976. },
  2977. {
  2978. "op": "replace",
  2979. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  2980. "value": 2.1406707763671875
  2981. },
  2982. {
  2983. "op": "replace",
  2984. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  2985. "value": -41.693660736083984
  2986. },
  2987. {
  2988. "op": "replace",
  2989. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  2990. "value": -0.4240313172340393
  2991. },
  2992. {
  2993. "op": "replace",
  2994. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  2995. "value": -177.46246337890625
  2996. }
  2997. ]
  2998. },
  2999. "Instance_[408479423198079]": {
  3000. "Source": "Prefabs/Apple.prefab",
  3001. "Patches": [
  3002. {
  3003. "op": "replace",
  3004. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3005. "value": "../Entity_[408423588623231]"
  3006. },
  3007. {
  3008. "op": "replace",
  3009. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3010. "value": 0.7143822908401489
  3011. },
  3012. {
  3013. "op": "replace",
  3014. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3015. "value": -0.13575983047485352
  3016. },
  3017. {
  3018. "op": "replace",
  3019. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3020. "value": 2.1406707763671875
  3021. },
  3022. {
  3023. "op": "replace",
  3024. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3025. "value": 16.596139907836914
  3026. },
  3027. {
  3028. "op": "replace",
  3029. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3030. "value": 13.519740104675291
  3031. }
  3032. ]
  3033. },
  3034. "Instance_[408483718165375]": {
  3035. "Source": "Prefabs/Apple.prefab",
  3036. "Patches": [
  3037. {
  3038. "op": "replace",
  3039. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3040. "value": "../Entity_[408432178557823]"
  3041. },
  3042. {
  3043. "op": "replace",
  3044. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3045. "value": 0.5637894868850708
  3046. },
  3047. {
  3048. "op": "replace",
  3049. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3050. "value": 0.039330244064331055
  3051. },
  3052. {
  3053. "op": "replace",
  3054. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3055. "value": 2.142102003097534
  3056. },
  3057. {
  3058. "op": "replace",
  3059. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3060. "value": -10.145389556884766
  3061. },
  3062. {
  3063. "op": "replace",
  3064. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3065. "value": 34.67579650878906
  3066. },
  3067. {
  3068. "op": "replace",
  3069. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3070. "value": -136.82337951660156
  3071. }
  3072. ]
  3073. },
  3074. "Instance_[408488013132671]": {
  3075. "Source": "Prefabs/Apple.prefab",
  3076. "Patches": [
  3077. {
  3078. "op": "replace",
  3079. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3080. "value": "../Entity_[408436473525119]"
  3081. },
  3082. {
  3083. "op": "replace",
  3084. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3085. "value": 0.5637897253036499
  3086. },
  3087. {
  3088. "op": "replace",
  3089. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3090. "value": 0.039330318570137024
  3091. },
  3092. {
  3093. "op": "replace",
  3094. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3095. "value": 2.142101764678955
  3096. },
  3097. {
  3098. "op": "replace",
  3099. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3100. "value": -10.145389556884766
  3101. },
  3102. {
  3103. "op": "replace",
  3104. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3105. "value": 34.67579650878906
  3106. },
  3107. {
  3108. "op": "replace",
  3109. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3110. "value": -136.82337951660156
  3111. }
  3112. ]
  3113. },
  3114. "Instance_[408492308099967]": {
  3115. "Source": "Prefabs/Apple.prefab",
  3116. "Patches": [
  3117. {
  3118. "op": "replace",
  3119. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3120. "value": "../Entity_[408427883590527]"
  3121. },
  3122. {
  3123. "op": "replace",
  3124. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3125. "value": 0.6402418613433838
  3126. },
  3127. {
  3128. "op": "replace",
  3129. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3130. "value": 0.06055516004562378
  3131. },
  3132. {
  3133. "op": "replace",
  3134. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3135. "value": 2.1406710147857666
  3136. },
  3137. {
  3138. "op": "replace",
  3139. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3140. "value": -0.000009573574061505497
  3141. },
  3142. {
  3143. "op": "replace",
  3144. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3145. "value": 62.77272033691406
  3146. }
  3147. ]
  3148. },
  3149. "Instance_[408496603067263]": {
  3150. "Source": "Prefabs/Apple.prefab",
  3151. "Patches": [
  3152. {
  3153. "op": "replace",
  3154. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3155. "value": "../Entity_[408414998688639]"
  3156. },
  3157. {
  3158. "op": "replace",
  3159. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3160. "value": 0.6034331321716309
  3161. },
  3162. {
  3163. "op": "replace",
  3164. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3165. "value": -0.010982334613800049
  3166. },
  3167. {
  3168. "op": "replace",
  3169. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3170. "value": 2.140671491622925
  3171. },
  3172. {
  3173. "op": "replace",
  3174. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3175. "value": -41.693363189697266
  3176. },
  3177. {
  3178. "op": "replace",
  3179. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3180. "value": -0.4240524172782898
  3181. },
  3182. {
  3183. "op": "replace",
  3184. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3185. "value": -177.46246337890625
  3186. }
  3187. ]
  3188. },
  3189. "Instance_[408500898034559]": {
  3190. "Source": "Prefabs/Apple.prefab",
  3191. "Patches": [
  3192. {
  3193. "op": "replace",
  3194. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3195. "value": "../Entity_[408419293655935]"
  3196. },
  3197. {
  3198. "op": "replace",
  3199. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3200. "value": 0.563789963722229
  3201. },
  3202. {
  3203. "op": "replace",
  3204. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3205. "value": 0.03933114558458328
  3206. },
  3207. {
  3208. "op": "replace",
  3209. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3210. "value": 2.142101287841797
  3211. },
  3212. {
  3213. "op": "replace",
  3214. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3215. "value": -10.145342826843262
  3216. },
  3217. {
  3218. "op": "replace",
  3219. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3220. "value": 34.675743103027344
  3221. },
  3222. {
  3223. "op": "replace",
  3224. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3225. "value": -136.8233184814453
  3226. }
  3227. ]
  3228. },
  3229. "Instance_[408505193001855]": {
  3230. "Source": "Prefabs/Apple.prefab",
  3231. "Patches": [
  3232. {
  3233. "op": "replace",
  3234. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3235. "value": "../ContainerEntity"
  3236. },
  3237. {
  3238. "op": "replace",
  3239. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3240. "value": 0.3955511450767517
  3241. },
  3242. {
  3243. "op": "replace",
  3244. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3245. "value": -0.0629330426454544
  3246. },
  3247. {
  3248. "op": "replace",
  3249. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3250. "value": 1.4169620275497437
  3251. },
  3252. {
  3253. "op": "replace",
  3254. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3255. "value": -92.2063446044922
  3256. }
  3257. ]
  3258. },
  3259. "Instance_[408509487969151]": {
  3260. "Source": "Prefabs/Apple.prefab",
  3261. "Patches": [
  3262. {
  3263. "op": "replace",
  3264. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3265. "value": "../Entity_[408436473525119]"
  3266. },
  3267. {
  3268. "op": "replace",
  3269. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3270. "value": 0.6402417421340942
  3271. },
  3272. {
  3273. "op": "replace",
  3274. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3275. "value": 0.060555264353752136
  3276. },
  3277. {
  3278. "op": "replace",
  3279. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3280. "value": 2.1406710147857666
  3281. },
  3282. {
  3283. "op": "replace",
  3284. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3285. "value": -0.000009573574061505497
  3286. },
  3287. {
  3288. "op": "replace",
  3289. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3290. "value": 62.77272033691406
  3291. }
  3292. ]
  3293. },
  3294. "Instance_[408513782936447]": {
  3295. "Source": "Prefabs/Apple.prefab",
  3296. "Patches": [
  3297. {
  3298. "op": "replace",
  3299. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3300. "value": "../Entity_[408419293655935]"
  3301. },
  3302. {
  3303. "op": "replace",
  3304. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3305. "value": 0.6402420401573181
  3306. },
  3307. {
  3308. "op": "replace",
  3309. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3310. "value": 0.06055619567632675
  3311. },
  3312. {
  3313. "op": "replace",
  3314. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3315. "value": 2.1406712532043457
  3316. },
  3317. {
  3318. "op": "replace",
  3319. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3320. "value": 0.000001377461785523337
  3321. },
  3322. {
  3323. "op": "replace",
  3324. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3325. "value": 0.0000018404717820885708
  3326. },
  3327. {
  3328. "op": "replace",
  3329. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3330. "value": 62.77271270751953
  3331. }
  3332. ]
  3333. },
  3334. "Instance_[408702761497471]": {
  3335. "Source": "Prefabs/Apple.prefab",
  3336. "Patches": [
  3337. {
  3338. "op": "replace",
  3339. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3340. "value": "../Entity_[408698466530175]"
  3341. },
  3342. {
  3343. "op": "replace",
  3344. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3345. "value": 0.6034328937530518
  3346. },
  3347. {
  3348. "op": "replace",
  3349. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3350. "value": -0.010983288288116457
  3351. },
  3352. {
  3353. "op": "replace",
  3354. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3355. "value": 2.1406712532043457
  3356. },
  3357. {
  3358. "op": "replace",
  3359. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3360. "value": -41.693660736083984
  3361. },
  3362. {
  3363. "op": "replace",
  3364. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3365. "value": -0.4240313172340393
  3366. },
  3367. {
  3368. "op": "replace",
  3369. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3370. "value": -177.46246337890625
  3371. }
  3372. ]
  3373. },
  3374. "Instance_[408707056464767]": {
  3375. "Source": "Prefabs/Apple.prefab",
  3376. "Patches": [
  3377. {
  3378. "op": "replace",
  3379. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3380. "value": "../Entity_[408698466530175]"
  3381. },
  3382. {
  3383. "op": "replace",
  3384. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3385. "value": 0.5637896060943604
  3386. },
  3387. {
  3388. "op": "replace",
  3389. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3390. "value": 0.039330244064331055
  3391. },
  3392. {
  3393. "op": "replace",
  3394. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3395. "value": 2.142102003097534
  3396. },
  3397. {
  3398. "op": "replace",
  3399. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3400. "value": -10.145389556884766
  3401. },
  3402. {
  3403. "op": "replace",
  3404. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3405. "value": 34.67579650878906
  3406. },
  3407. {
  3408. "op": "replace",
  3409. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3410. "value": -136.82337951660156
  3411. }
  3412. ]
  3413. },
  3414. "Instance_[408711351432063]": {
  3415. "Source": "Prefabs/Apple.prefab",
  3416. "Patches": [
  3417. {
  3418. "op": "replace",
  3419. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3420. "value": "../Entity_[408698466530175]"
  3421. },
  3422. {
  3423. "op": "replace",
  3424. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3425. "value": 0.6402419805526733
  3426. },
  3427. {
  3428. "op": "replace",
  3429. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3430. "value": 0.06055523455142975
  3431. },
  3432. {
  3433. "op": "replace",
  3434. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3435. "value": 2.1406712532043457
  3436. },
  3437. {
  3438. "op": "replace",
  3439. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3440. "value": -0.000009573574061505497
  3441. },
  3442. {
  3443. "op": "replace",
  3444. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3445. "value": 62.77272033691406
  3446. }
  3447. ]
  3448. },
  3449. "Instance_[408745711170431]": {
  3450. "Source": "Prefabs/Apple.prefab",
  3451. "Patches": [
  3452. {
  3453. "op": "replace",
  3454. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3455. "value": "../Entity_[396191521764223]"
  3456. },
  3457. {
  3458. "op": "replace",
  3459. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3460. "value": 0.3228529095649719
  3461. },
  3462. {
  3463. "op": "replace",
  3464. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3465. "value": -0.07505708932876587
  3466. },
  3467. {
  3468. "op": "replace",
  3469. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3470. "value": 1.8568737506866455
  3471. },
  3472. {
  3473. "op": "replace",
  3474. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3475. "value": -10.145357131958008
  3476. },
  3477. {
  3478. "op": "replace",
  3479. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3480. "value": 34.67571258544922
  3481. },
  3482. {
  3483. "op": "replace",
  3484. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3485. "value": -136.82330322265625
  3486. }
  3487. ]
  3488. },
  3489. "Instance_[408758596072319]": {
  3490. "Source": "Prefabs/Apple.prefab",
  3491. "Patches": [
  3492. {
  3493. "op": "replace",
  3494. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3495. "value": "../ContainerEntity"
  3496. },
  3497. {
  3498. "op": "replace",
  3499. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3500. "value": 0.4133438766002655
  3501. },
  3502. {
  3503. "op": "replace",
  3504. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3505. "value": 0.09189382195472716
  3506. },
  3507. {
  3508. "op": "replace",
  3509. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3510. "value": 0.957241952419281
  3511. },
  3512. {
  3513. "op": "replace",
  3514. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3515. "value": -178.66636657714844
  3516. }
  3517. ]
  3518. },
  3519. "Instance_[408771480974207]": {
  3520. "Source": "Prefabs/Apple.prefab",
  3521. "Patches": [
  3522. {
  3523. "op": "replace",
  3524. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3525. "value": "../Entity_[408432178557823]"
  3526. },
  3527. {
  3528. "op": "replace",
  3529. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3530. "value": 1.1831845045089722
  3531. },
  3532. {
  3533. "op": "replace",
  3534. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3535. "value": -0.22705914080142975
  3536. },
  3537. {
  3538. "op": "replace",
  3539. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3540. "value": 2.140671730041504
  3541. },
  3542. {
  3543. "op": "replace",
  3544. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3545. "value": -0.000009573574061505497
  3546. },
  3547. {
  3548. "op": "replace",
  3549. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3550. "value": 62.77272033691406
  3551. }
  3552. ]
  3553. },
  3554. "Instance_[408784365876095]": {
  3555. "Source": "Prefabs/Apple.prefab",
  3556. "Patches": [
  3557. {
  3558. "op": "replace",
  3559. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3560. "value": "../Entity_[408427883590527]"
  3561. },
  3562. {
  3563. "op": "replace",
  3564. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3565. "value": 0.583662211894989
  3566. },
  3567. {
  3568. "op": "replace",
  3569. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3570. "value": -0.429611623287201
  3571. },
  3572. {
  3573. "op": "replace",
  3574. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3575. "value": 1.3775520324707031
  3576. },
  3577. {
  3578. "op": "replace",
  3579. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/0",
  3580. "value": -41.693660736083984
  3581. },
  3582. {
  3583. "op": "replace",
  3584. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/1",
  3585. "value": -0.4240313172340393
  3586. },
  3587. {
  3588. "op": "replace",
  3589. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3590. "value": -177.46246337890625
  3591. }
  3592. ]
  3593. },
  3594. "Instance_[408797250777983]": {
  3595. "Source": "Prefabs/Apple.prefab",
  3596. "Patches": [
  3597. {
  3598. "op": "replace",
  3599. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3600. "value": "../ContainerEntity"
  3601. },
  3602. {
  3603. "op": "replace",
  3604. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3605. "value": 0.2892940938472748
  3606. },
  3607. {
  3608. "op": "replace",
  3609. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3610. "value": 0.3907140195369721
  3611. },
  3612. {
  3613. "op": "replace",
  3614. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3615. "value": 0.8872771859169006
  3616. },
  3617. {
  3618. "op": "replace",
  3619. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3620. "value": -132.94012451171875
  3621. }
  3622. ]
  3623. },
  3624. "Instance_[421093742146431]": {
  3625. "Source": "Prefabs/GrassTileMed.prefab",
  3626. "Patches": [
  3627. {
  3628. "op": "replace",
  3629. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Parent Entity",
  3630. "value": "../ContainerEntity"
  3631. },
  3632. {
  3633. "op": "replace",
  3634. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/Translate/0",
  3635. "value": 0.019669830799102783
  3636. },
  3637. {
  3638. "op": "replace",
  3639. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/Translate/1",
  3640. "value": -0.010040462017059326
  3641. },
  3642. {
  3643. "op": "replace",
  3644. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/Translate/2",
  3645. "value": -0.03808104991912842
  3646. },
  3647. {
  3648. "op": "replace",
  3649. "path": "/ContainerEntity/Components/Component_[2832389859834261345]/Transform Data/UniformScale",
  3650. "value": 0.5
  3651. }
  3652. ]
  3653. },
  3654. "Instance_[543280202889653]": {
  3655. "Source": "Prefabs/Apple.prefab",
  3656. "Patches": [
  3657. {
  3658. "op": "replace",
  3659. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3660. "value": "../ContainerEntity"
  3661. },
  3662. {
  3663. "op": "replace",
  3664. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3665. "value": -0.31359222531318665
  3666. },
  3667. {
  3668. "op": "replace",
  3669. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3670. "value": -0.3475686013698578
  3671. },
  3672. {
  3673. "op": "replace",
  3674. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3675. "value": 1.4093260765075684
  3676. },
  3677. {
  3678. "op": "replace",
  3679. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3680. "value": -178.66636657714844
  3681. }
  3682. ]
  3683. },
  3684. "Instance_[543293087791541]": {
  3685. "Source": "Prefabs/Apple.prefab",
  3686. "Patches": [
  3687. {
  3688. "op": "replace",
  3689. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3690. "value": "../ContainerEntity"
  3691. },
  3692. {
  3693. "op": "replace",
  3694. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3695. "value": -0.14629094302654266
  3696. },
  3697. {
  3698. "op": "replace",
  3699. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3700. "value": -0.43553057312965393
  3701. },
  3702. {
  3703. "op": "replace",
  3704. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3705. "value": 1.0460083484649658
  3706. },
  3707. {
  3708. "op": "replace",
  3709. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3710. "value": -178.66636657714844
  3711. }
  3712. ]
  3713. },
  3714. "Instance_[543305972693429]": {
  3715. "Source": "Prefabs/Apple.prefab",
  3716. "Patches": [
  3717. {
  3718. "op": "replace",
  3719. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3720. "value": "../ContainerEntity"
  3721. },
  3722. {
  3723. "op": "replace",
  3724. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3725. "value": 0.054677173495292664
  3726. },
  3727. {
  3728. "op": "replace",
  3729. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3730. "value": 0.34439414739608765
  3731. },
  3732. {
  3733. "op": "replace",
  3734. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3735. "value": 1.2811453342437744
  3736. },
  3737. {
  3738. "op": "replace",
  3739. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3740. "value": -178.66636657714844
  3741. }
  3742. ]
  3743. },
  3744. "Instance_[543318857595317]": {
  3745. "Source": "Prefabs/Apple.prefab",
  3746. "Patches": [
  3747. {
  3748. "op": "replace",
  3749. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3750. "value": "../ContainerEntity"
  3751. },
  3752. {
  3753. "op": "replace",
  3754. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3755. "value": -0.08969463407993317
  3756. },
  3757. {
  3758. "op": "replace",
  3759. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3760. "value": -0.12806500494480133
  3761. },
  3762. {
  3763. "op": "replace",
  3764. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3765. "value": 1.5594239234924316
  3766. },
  3767. {
  3768. "op": "replace",
  3769. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3770. "value": -178.66636657714844
  3771. }
  3772. ]
  3773. },
  3774. "Instance_[543331742497205]": {
  3775. "Source": "Prefabs/Apple.prefab",
  3776. "Patches": [
  3777. {
  3778. "op": "replace",
  3779. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3780. "value": "../ContainerEntity"
  3781. },
  3782. {
  3783. "op": "replace",
  3784. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3785. "value": -0.1917058676481247
  3786. },
  3787. {
  3788. "op": "replace",
  3789. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3790. "value": -0.042837779968976974
  3791. },
  3792. {
  3793. "op": "replace",
  3794. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3795. "value": 1.9802011251449585
  3796. },
  3797. {
  3798. "op": "replace",
  3799. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3800. "value": -178.66636657714844
  3801. }
  3802. ]
  3803. },
  3804. "Instance_[543344627399093]": {
  3805. "Source": "Prefabs/Apple.prefab",
  3806. "Patches": [
  3807. {
  3808. "op": "replace",
  3809. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3810. "value": "../ContainerEntity"
  3811. },
  3812. {
  3813. "op": "replace",
  3814. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3815. "value": -0.047236498445272446
  3816. },
  3817. {
  3818. "op": "replace",
  3819. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3820. "value": 1.5999886989593506
  3821. },
  3822. {
  3823. "op": "replace",
  3824. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3825. "value": -178.66636657714844
  3826. }
  3827. ]
  3828. },
  3829. "Instance_[543357512300981]": {
  3830. "Source": "Prefabs/Apple.prefab",
  3831. "Patches": [
  3832. {
  3833. "op": "replace",
  3834. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3835. "value": "../ContainerEntity"
  3836. },
  3837. {
  3838. "op": "replace",
  3839. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3840. "value": -0.2981537878513336
  3841. },
  3842. {
  3843. "op": "replace",
  3844. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3845. "value": 0.04278241842985153
  3846. },
  3847. {
  3848. "op": "replace",
  3849. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3850. "value": 0.819862961769104
  3851. },
  3852. {
  3853. "op": "replace",
  3854. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3855. "value": -178.66636657714844
  3856. }
  3857. ]
  3858. },
  3859. "Instance_[543370397202869]": {
  3860. "Source": "Prefabs/Apple.prefab",
  3861. "Patches": [
  3862. {
  3863. "op": "replace",
  3864. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3865. "value": "../ContainerEntity"
  3866. },
  3867. {
  3868. "op": "replace",
  3869. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3870. "value": 0.37493592500686646
  3871. },
  3872. {
  3873. "op": "replace",
  3874. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3875. "value": -0.0700540542602539
  3876. },
  3877. {
  3878. "op": "replace",
  3879. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3880. "value": 0.7148736715316772
  3881. },
  3882. {
  3883. "op": "replace",
  3884. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3885. "value": -178.66636657714844
  3886. }
  3887. ]
  3888. },
  3889. "Instance_[585856552927307]": {
  3890. "Source": "Prefabs/Apple.prefab",
  3891. "Patches": [
  3892. {
  3893. "op": "replace",
  3894. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3895. "value": "../ContainerEntity"
  3896. },
  3897. {
  3898. "op": "replace",
  3899. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3900. "value": -0.06243341788649559
  3901. },
  3902. {
  3903. "op": "replace",
  3904. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3905. "value": -0.21899017691612244
  3906. },
  3907. {
  3908. "op": "replace",
  3909. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3910. "value": 0.5951061248779297
  3911. },
  3912. {
  3913. "op": "replace",
  3914. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3915. "value": -27.970508575439453
  3916. }
  3917. ]
  3918. },
  3919. "Instance_[585869437829195]": {
  3920. "Source": "Prefabs/Apple.prefab",
  3921. "Patches": [
  3922. {
  3923. "op": "replace",
  3924. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3925. "value": "../ContainerEntity"
  3926. },
  3927. {
  3928. "op": "replace",
  3929. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3930. "value": -0.2051631361246109
  3931. },
  3932. {
  3933. "op": "replace",
  3934. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3935. "value": 0.3450286090373993
  3936. },
  3937. {
  3938. "op": "replace",
  3939. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3940. "value": 0.7198629975318909
  3941. },
  3942. {
  3943. "op": "replace",
  3944. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3945. "value": -178.66636657714844
  3946. }
  3947. ]
  3948. },
  3949. "Instance_[585882322731083]": {
  3950. "Source": "Prefabs/Apple.prefab",
  3951. "Patches": [
  3952. {
  3953. "op": "replace",
  3954. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3955. "value": "../ContainerEntity"
  3956. },
  3957. {
  3958. "op": "replace",
  3959. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3960. "value": -0.20283570885658264
  3961. },
  3962. {
  3963. "op": "replace",
  3964. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3965. "value": 0.245055690407753
  3966. },
  3967. {
  3968. "op": "replace",
  3969. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  3970. "value": -178.66636657714844
  3971. }
  3972. ]
  3973. },
  3974. "Instance_[585895207632971]": {
  3975. "Source": "Prefabs/Apple.prefab",
  3976. "Patches": [
  3977. {
  3978. "op": "replace",
  3979. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Parent Entity",
  3980. "value": "../ContainerEntity"
  3981. },
  3982. {
  3983. "op": "replace",
  3984. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/0",
  3985. "value": -0.002889871597290039
  3986. },
  3987. {
  3988. "op": "replace",
  3989. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/1",
  3990. "value": 0.24971053004264832
  3991. },
  3992. {
  3993. "op": "replace",
  3994. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Translate/2",
  3995. "value": 1.5198630094528198
  3996. },
  3997. {
  3998. "op": "replace",
  3999. "path": "/ContainerEntity/Components/Component_[17300195898860990188]/Transform Data/Rotate/2",
  4000. "value": -178.66636657714844
  4001. }
  4002. ]
  4003. }
  4004. }
  4005. }