FightingScene.scene 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. },
  10. "asyncLoadAssets": false
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "",
  15. "_objFlags": 0,
  16. "_parent": null,
  17. "_children": [
  18. {
  19. "__id__": 2
  20. },
  21. {
  22. "__id__": 7
  23. },
  24. {
  25. "__id__": 80
  26. },
  27. {
  28. "__id__": 83
  29. },
  30. {
  31. "__id__": 71
  32. },
  33. {
  34. "__id__": 74
  35. },
  36. {
  37. "__id__": 77
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [],
  42. "_prefab": null,
  43. "autoReleaseAssets": false,
  44. "_globals": {
  45. "__id__": 86
  46. },
  47. "_id": "c2b58d4e-131e-4f1f-afd3-c5565cf05d4e"
  48. },
  49. {
  50. "__type__": "cc.Node",
  51. "_name": "FightingScene",
  52. "_objFlags": 0,
  53. "_parent": {
  54. "__id__": 1
  55. },
  56. "_children": [],
  57. "_active": true,
  58. "_components": [
  59. {
  60. "__id__": 3
  61. }
  62. ],
  63. "_prefab": null,
  64. "_lpos": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_lrot": {
  71. "__type__": "cc.Quat",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0,
  75. "w": 1
  76. },
  77. "_lscale": {
  78. "__type__": "cc.Vec3",
  79. "x": 1,
  80. "y": 1,
  81. "z": 1
  82. },
  83. "_layer": 1073741824,
  84. "_euler": {
  85. "__type__": "cc.Vec3",
  86. "x": 0,
  87. "y": 0,
  88. "z": 0
  89. },
  90. "_id": "11pNU6jaxPDYnAAWAblZvT"
  91. },
  92. {
  93. "__type__": "0d872YkVUBI8KRfzuG/g0Cm",
  94. "_name": "",
  95. "_objFlags": 0,
  96. "node": {
  97. "__id__": 2
  98. },
  99. "_enabled": true,
  100. "leftHand": {
  101. "__id__": 4
  102. },
  103. "rightHand": {
  104. "__id__": 40
  105. },
  106. "camrea": {
  107. "__id__": 9
  108. },
  109. "LeftEndPos": {
  110. "__id__": 71
  111. },
  112. "MiddleEndPos": {
  113. "__id__": 74
  114. },
  115. "RightEndPos": {
  116. "__id__": 77
  117. },
  118. "_id": "28sPTeJwhN9ZWhMe0ApJMl"
  119. },
  120. {
  121. "__type__": "cc.AnimationComponent",
  122. "_name": "Hand_L<AnimationComponent>",
  123. "_objFlags": 0,
  124. "node": {
  125. "__id__": 5
  126. },
  127. "_enabled": true,
  128. "playOnLoad": true,
  129. "_clips": [
  130. {
  131. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@7f91a"
  132. },
  133. {
  134. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@a7884"
  135. },
  136. {
  137. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@18ed3"
  138. },
  139. {
  140. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@c2696"
  141. },
  142. {
  143. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@50b81"
  144. }
  145. ],
  146. "_defaultClip": null,
  147. "_id": "b8ddWtxNlMfpCqIzkyFgki"
  148. },
  149. {
  150. "__type__": "cc.Node",
  151. "_name": "Hand_L",
  152. "_objFlags": 0,
  153. "_parent": {
  154. "__id__": 6
  155. },
  156. "_children": [
  157. {
  158. "__id__": 42
  159. }
  160. ],
  161. "_active": true,
  162. "_components": [
  163. {
  164. "__id__": 4
  165. }
  166. ],
  167. "_prefab": {
  168. "__id__": 70
  169. },
  170. "_lpos": {
  171. "__type__": "cc.Vec3",
  172. "x": -0.3,
  173. "y": 0,
  174. "z": 0
  175. },
  176. "_lrot": {
  177. "__type__": "cc.Quat",
  178. "x": 0,
  179. "y": 1,
  180. "z": 0,
  181. "w": 6.123233995736766e-17
  182. },
  183. "_lscale": {
  184. "__type__": "cc.Vec3",
  185. "x": 1,
  186. "y": 1,
  187. "z": 1
  188. },
  189. "_layer": 1073741824,
  190. "_euler": {
  191. "__type__": "cc.Vec3",
  192. "x": 0,
  193. "y": 180,
  194. "z": 0
  195. },
  196. "_id": "51zEATXadAiq67b1YUUwNC"
  197. },
  198. {
  199. "__type__": "cc.Node",
  200. "_name": "HandGroup",
  201. "_objFlags": 0,
  202. "_parent": {
  203. "__id__": 7
  204. },
  205. "_children": [
  206. {
  207. "__id__": 5
  208. },
  209. {
  210. "__id__": 11
  211. }
  212. ],
  213. "_active": true,
  214. "_components": [],
  215. "_prefab": null,
  216. "_lpos": {
  217. "__type__": "cc.Vec3",
  218. "x": 0,
  219. "y": 0,
  220. "z": -0.8
  221. },
  222. "_lrot": {
  223. "__type__": "cc.Quat",
  224. "x": 0,
  225. "y": 0,
  226. "z": 0,
  227. "w": 1
  228. },
  229. "_lscale": {
  230. "__type__": "cc.Vec3",
  231. "x": 1,
  232. "y": 1,
  233. "z": 1
  234. },
  235. "_layer": 1073741824,
  236. "_euler": {
  237. "__type__": "cc.Vec3",
  238. "x": 0,
  239. "y": 0,
  240. "z": 0
  241. },
  242. "_id": "a8ZF9dEIJI+KXLJoRrVi2f"
  243. },
  244. {
  245. "__type__": "cc.Node",
  246. "_name": "CameraGroup",
  247. "_objFlags": 0,
  248. "_parent": {
  249. "__id__": 1
  250. },
  251. "_children": [
  252. {
  253. "__id__": 8
  254. },
  255. {
  256. "__id__": 6
  257. }
  258. ],
  259. "_active": true,
  260. "_components": [],
  261. "_prefab": null,
  262. "_lpos": {
  263. "__type__": "cc.Vec3",
  264. "x": 0,
  265. "y": 0.689,
  266. "z": 3.347
  267. },
  268. "_lrot": {
  269. "__type__": "cc.Quat",
  270. "x": 0,
  271. "y": 0,
  272. "z": 0,
  273. "w": 1
  274. },
  275. "_lscale": {
  276. "__type__": "cc.Vec3",
  277. "x": 1,
  278. "y": 1,
  279. "z": 1
  280. },
  281. "_layer": 1073741824,
  282. "_euler": {
  283. "__type__": "cc.Vec3",
  284. "x": 0,
  285. "y": 0,
  286. "z": 0
  287. },
  288. "_id": "7dHCMjAiJCyqBWXhdh1h7d"
  289. },
  290. {
  291. "__type__": "cc.Node",
  292. "_name": "Camera",
  293. "_objFlags": 0,
  294. "_parent": {
  295. "__id__": 7
  296. },
  297. "_children": [],
  298. "_active": true,
  299. "_components": [
  300. {
  301. "__id__": 9
  302. },
  303. {
  304. "__id__": 10
  305. }
  306. ],
  307. "_prefab": null,
  308. "_lpos": {
  309. "__type__": "cc.Vec3",
  310. "x": 0,
  311. "y": 0.8,
  312. "z": 0.082
  313. },
  314. "_lrot": {
  315. "__type__": "cc.Quat",
  316. "x": -0.10452846326765347,
  317. "y": 0,
  318. "z": 0,
  319. "w": 0.9945218953682733
  320. },
  321. "_lscale": {
  322. "__type__": "cc.Vec3",
  323. "x": 1,
  324. "y": 1,
  325. "z": 1
  326. },
  327. "_layer": 1073741824,
  328. "_euler": {
  329. "__type__": "cc.Vec3",
  330. "x": -12,
  331. "y": 0,
  332. "z": 0
  333. },
  334. "_id": "c9DMICJLFO5IeO07EPon7U"
  335. },
  336. {
  337. "__type__": "cc.CameraComponent",
  338. "_name": "Camera<CameraComponent>",
  339. "_objFlags": 0,
  340. "node": {
  341. "__id__": 8
  342. },
  343. "_enabled": true,
  344. "_projection": 1,
  345. "_priority": 0,
  346. "_fov": 60,
  347. "_fovAxis": 0,
  348. "_orthoHeight": 10,
  349. "_near": 1,
  350. "_far": 1000,
  351. "_color": {
  352. "__type__": "cc.Color",
  353. "r": 51,
  354. "g": 51,
  355. "b": 51,
  356. "a": 255
  357. },
  358. "_depth": 1,
  359. "_stencil": 0,
  360. "_clearFlags": 7,
  361. "_rect": {
  362. "__type__": "cc.Rect",
  363. "x": 0,
  364. "y": 0,
  365. "width": 1,
  366. "height": 1
  367. },
  368. "_aperture": 19,
  369. "_shutter": 7,
  370. "_iso": 0,
  371. "_screenScale": 1,
  372. "_visibility": "1073741824",
  373. "_targetTexture": null,
  374. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  375. },
  376. {
  377. "__type__": "db2b6G7KQxN8anKyUBMCEyP",
  378. "_name": "Camera<CameraFitWidth>",
  379. "_objFlags": 0,
  380. "node": {
  381. "__id__": 8
  382. },
  383. "_enabled": true,
  384. "_id": "49OdD4o5RM8pQwE/GGUy1u"
  385. },
  386. {
  387. "__type__": "cc.Node",
  388. "_name": "Hand_R",
  389. "_objFlags": 0,
  390. "_parent": {
  391. "__id__": 6
  392. },
  393. "_children": [
  394. {
  395. "__id__": 12
  396. }
  397. ],
  398. "_active": true,
  399. "_components": [
  400. {
  401. "__id__": 40
  402. }
  403. ],
  404. "_prefab": {
  405. "__id__": 41
  406. },
  407. "_lpos": {
  408. "__type__": "cc.Vec3",
  409. "x": 0.3,
  410. "y": 0,
  411. "z": 0
  412. },
  413. "_lrot": {
  414. "__type__": "cc.Quat",
  415. "x": 0,
  416. "y": 1,
  417. "z": 0,
  418. "w": 6.123233995736766e-17
  419. },
  420. "_lscale": {
  421. "__type__": "cc.Vec3",
  422. "x": 1,
  423. "y": 1,
  424. "z": 1
  425. },
  426. "_layer": 1073741824,
  427. "_euler": {
  428. "__type__": "cc.Vec3",
  429. "x": 0,
  430. "y": 180,
  431. "z": 0
  432. },
  433. "_id": "3cTPdekjVLnKtwyu1nVCDg"
  434. },
  435. {
  436. "__type__": "cc.Node",
  437. "_name": "RootNode",
  438. "_objFlags": 0,
  439. "_parent": {
  440. "__id__": 11
  441. },
  442. "_children": [
  443. {
  444. "__id__": 13
  445. }
  446. ],
  447. "_active": true,
  448. "_components": [],
  449. "_prefab": {
  450. "__id__": 39
  451. },
  452. "_lpos": {
  453. "__type__": "cc.Vec3",
  454. "x": 0,
  455. "y": 0,
  456. "z": 0
  457. },
  458. "_lrot": {
  459. "__type__": "cc.Quat",
  460. "x": 0,
  461. "y": 0,
  462. "z": 0,
  463. "w": 1
  464. },
  465. "_lscale": {
  466. "__type__": "cc.Vec3",
  467. "x": 1,
  468. "y": 1,
  469. "z": 1
  470. },
  471. "_layer": 1073741824,
  472. "_euler": {
  473. "__type__": "cc.Vec3",
  474. "x": 0,
  475. "y": 0,
  476. "z": 0
  477. },
  478. "_id": "37O5KNXtRNpo3bKMGiGhJb"
  479. },
  480. {
  481. "__type__": "cc.Node",
  482. "_name": "Arm",
  483. "_objFlags": 0,
  484. "_parent": {
  485. "__id__": 12
  486. },
  487. "_children": [
  488. {
  489. "__id__": 14
  490. }
  491. ],
  492. "_active": true,
  493. "_components": [],
  494. "_prefab": {
  495. "__id__": 38
  496. },
  497. "_lpos": {
  498. "__type__": "cc.Vec3",
  499. "x": 0,
  500. "y": 0,
  501. "z": 0
  502. },
  503. "_lrot": {
  504. "__type__": "cc.Quat",
  505. "x": -0.7071068407911906,
  506. "y": 0,
  507. "z": 0,
  508. "w": 0.7071067215818996
  509. },
  510. "_lscale": {
  511. "__type__": "cc.Vec3",
  512. "x": 2.49999737739563,
  513. "y": 2.49999737739563,
  514. "z": 2.49999737739563
  515. },
  516. "_layer": 1073741824,
  517. "_euler": {
  518. "__type__": "cc.Vec3",
  519. "x": -90.0000096593463,
  520. "y": 0,
  521. "z": 0
  522. },
  523. "_id": "e0Gk1qx9hFw4PRe86FmwHl"
  524. },
  525. {
  526. "__type__": "cc.Node",
  527. "_name": "upper_arm_R",
  528. "_objFlags": 0,
  529. "_parent": {
  530. "__id__": 13
  531. },
  532. "_children": [
  533. {
  534. "__id__": 15
  535. },
  536. {
  537. "__id__": 33
  538. }
  539. ],
  540. "_active": true,
  541. "_components": [],
  542. "_prefab": {
  543. "__id__": 37
  544. },
  545. "_lpos": {
  546. "__type__": "cc.Vec3",
  547. "x": -0.00187119445763528,
  548. "y": 0.0199693888425827,
  549. "z": 0.0198789201676846
  550. },
  551. "_lrot": {
  552. "__type__": "cc.Quat",
  553. "x": 0.7128733386984369,
  554. "y": -0.12168298645414753,
  555. "z": 0.6820341935561693,
  556. "w": -0.10878516719079445
  557. },
  558. "_lscale": {
  559. "__type__": "cc.Vec3",
  560. "x": 1,
  561. "y": 1,
  562. "z": 1
  563. },
  564. "_layer": 1073741824,
  565. "_euler": {
  566. "__type__": "cc.Vec3",
  567. "x": 179.34133534803925,
  568. "y": -87.57588334232474,
  569. "z": -18.776628506046173
  570. },
  571. "_id": "69A9MCAhVLRa4xpmIZcm4h"
  572. },
  573. {
  574. "__type__": "cc.Node",
  575. "_name": "lower_arm_R",
  576. "_objFlags": 0,
  577. "_parent": {
  578. "__id__": 14
  579. },
  580. "_children": [
  581. {
  582. "__id__": 16
  583. },
  584. {
  585. "__id__": 28
  586. }
  587. ],
  588. "_active": true,
  589. "_components": [],
  590. "_prefab": {
  591. "__id__": 32
  592. },
  593. "_lpos": {
  594. "__type__": "cc.Vec3",
  595. "x": -4.76837147544984e-9,
  596. "y": 0.122766919434071,
  597. "z": 1.19209286886246e-9
  598. },
  599. "_lrot": {
  600. "__type__": "cc.Quat",
  601. "x": 0.4669232648894713,
  602. "y": 0.8732426729669459,
  603. "z": 0.10001992396566957,
  604. "w": -0.09708714448577543
  605. },
  606. "_lscale": {
  607. "__type__": "cc.Vec3",
  608. "x": 1.00000011920929,
  609. "y": 1,
  610. "z": 1.00000023841858
  611. },
  612. "_layer": 1073741824,
  613. "_euler": {
  614. "__type__": "cc.Vec3",
  615. "x": -26.00358163916388,
  616. "y": -154.24718673728168,
  617. "z": 52.754859968015055
  618. },
  619. "_id": "62se0hvodE86Jru0TWCPN7"
  620. },
  621. {
  622. "__type__": "cc.Node",
  623. "_name": "transform1",
  624. "_objFlags": 0,
  625. "_parent": {
  626. "__id__": 15
  627. },
  628. "_children": [
  629. {
  630. "__id__": 17
  631. }
  632. ],
  633. "_active": true,
  634. "_components": [],
  635. "_prefab": {
  636. "__id__": 27
  637. },
  638. "_lpos": {
  639. "__type__": "cc.Vec3",
  640. "x": -0.11739581823349,
  641. "y": 0.0252596475183964,
  642. "z": -0.094342976808548
  643. },
  644. "_lrot": {
  645. "__type__": "cc.Quat",
  646. "x": -0.5686733656216296,
  647. "y": 0.09836318228904103,
  648. "z": 0.7051433838438258,
  649. "w": 0.4119564246662746
  650. },
  651. "_lscale": {
  652. "__type__": "cc.Vec3",
  653. "x": 0.999999821186066,
  654. "y": 0.999999940395355,
  655. "z": 0.999999940395355
  656. },
  657. "_layer": 1073741824,
  658. "_euler": {
  659. "__type__": "cc.Vec3",
  660. "x": -136.55882415880845,
  661. "y": 90.89566604296236,
  662. "z": 27.976128283550537
  663. },
  664. "_id": "00+kUKWeZN6qwkRDwHirXc"
  665. },
  666. {
  667. "__type__": "cc.Node",
  668. "_name": "hand_R",
  669. "_objFlags": 0,
  670. "_parent": {
  671. "__id__": 16
  672. },
  673. "_children": [
  674. {
  675. "__id__": 18
  676. },
  677. {
  678. "__id__": 22
  679. }
  680. ],
  681. "_active": true,
  682. "_components": [],
  683. "_prefab": {
  684. "__id__": 26
  685. },
  686. "_lpos": {
  687. "__type__": "cc.Vec3",
  688. "x": -0.0479476489126682,
  689. "y": -0.163001760840416,
  690. "z": -0.00526508083567023
  691. },
  692. "_lrot": {
  693. "__type__": "cc.Quat",
  694. "x": 0.17887440785674324,
  695. "y": 0.08786853629725101,
  696. "z": 0.9795610561564844,
  697. "w": -0.027261764514996394
  698. },
  699. "_lscale": {
  700. "__type__": "cc.Vec3",
  701. "x": 0.99999988079071,
  702. "y": 0.999999940395355,
  703. "z": 0.999999940395355
  704. },
  705. "_layer": 1073741824,
  706. "_euler": {
  707. "__type__": "cc.Vec3",
  708. "x": -169.51710436825414,
  709. "y": -159.18734036749785,
  710. "z": -1.259133752988458
  711. },
  712. "_id": "4euo4WmuRIYJbAVcq7SWil"
  713. },
  714. {
  715. "__type__": "cc.Node",
  716. "_name": "transform2",
  717. "_objFlags": 0,
  718. "_parent": {
  719. "__id__": 17
  720. },
  721. "_children": [
  722. {
  723. "__id__": 19
  724. }
  725. ],
  726. "_active": true,
  727. "_components": [],
  728. "_prefab": {
  729. "__id__": 21
  730. },
  731. "_lpos": {
  732. "__type__": "cc.Vec3",
  733. "x": -0.0573748089373112,
  734. "y": -0.168648242950439,
  735. "z": -0.0279340911656618
  736. },
  737. "_lrot": {
  738. "__type__": "cc.Quat",
  739. "x": 0.16598473782119896,
  740. "y": 0.7220834621029274,
  741. "z": 0.6543067809145152,
  742. "w": 0.15141722827063847
  743. },
  744. "_lscale": {
  745. "__type__": "cc.Vec3",
  746. "x": 0.4000004529953,
  747. "y": 0.4000004529953,
  748. "z": 0.4000004529953
  749. },
  750. "_layer": 1073741824,
  751. "_euler": {
  752. "__type__": "cc.Vec3",
  753. "x": -84.34031666114561,
  754. "y": 179.90683531759714,
  755. "z": 25.967184866346347
  756. },
  757. "_id": "c1IMOA7bFIRqsA+B09C37I"
  758. },
  759. {
  760. "__type__": "cc.Node",
  761. "_name": "Guns",
  762. "_objFlags": 0,
  763. "_parent": {
  764. "__id__": 18
  765. },
  766. "_children": [],
  767. "_active": true,
  768. "_components": [],
  769. "_prefab": {
  770. "__id__": 20
  771. },
  772. "_lpos": {
  773. "__type__": "cc.Vec3",
  774. "x": 0.0926190093159676,
  775. "y": 0.115806952118874,
  776. "z": 0.477917075157166
  777. },
  778. "_lrot": {
  779. "__type__": "cc.Quat",
  780. "x": 2.1404575678757462e-17,
  781. "y": 0.26985764707823545,
  782. "z": 7.6415069643379115e-19,
  783. "w": 0.962900228639187
  784. },
  785. "_lscale": {
  786. "__type__": "cc.Vec3",
  787. "x": 1,
  788. "y": 1,
  789. "z": 1
  790. },
  791. "_layer": 1073741824,
  792. "_euler": {
  793. "__type__": "cc.Vec3",
  794. "x": 2.33815583881749e-15,
  795. "y": 31.311592403165022,
  796. "z": 7.462190073589119e-16
  797. },
  798. "_id": "aaDyzSdU1LHJIx6cJDK/q0"
  799. },
  800. {
  801. "__type__": "cc.PrefabInfo",
  802. "root": {
  803. "__id__": 11
  804. },
  805. "asset": {
  806. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  807. },
  808. "fileId": "68MfT8AxVHm7qg9uJaGhQ1",
  809. "sync": false,
  810. "_synced": {
  811. "default": false,
  812. "serializable": false
  813. }
  814. },
  815. {
  816. "__type__": "cc.PrefabInfo",
  817. "root": {
  818. "__id__": 11
  819. },
  820. "asset": {
  821. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  822. },
  823. "fileId": "f8shPjlUtH65IDPHTkEB2U",
  824. "sync": false,
  825. "_synced": {
  826. "default": false,
  827. "serializable": false
  828. }
  829. },
  830. {
  831. "__type__": "cc.Node",
  832. "_name": "polySurface1",
  833. "_objFlags": 0,
  834. "_parent": {
  835. "__id__": 17
  836. },
  837. "_children": [],
  838. "_active": true,
  839. "_components": [
  840. {
  841. "__id__": 23
  842. }
  843. ],
  844. "_prefab": {
  845. "__id__": 25
  846. },
  847. "_lpos": {
  848. "__type__": "cc.Vec3",
  849. "x": -0.123767487704754,
  850. "y": -0.172050505876541,
  851. "z": -0.00599880423396826
  852. },
  853. "_lrot": {
  854. "__type__": "cc.Quat",
  855. "x": 0.010300790094140692,
  856. "y": 0.047925357400886145,
  857. "z": 0.9732548721471967,
  858. "w": 0.22443709070289086
  859. },
  860. "_lscale": {
  861. "__type__": "cc.Vec3",
  862. "x": 1.00000011920929,
  863. "y": 1.00000011920929,
  864. "z": 1.00000011920929
  865. },
  866. "_layer": 1073741824,
  867. "_euler": {
  868. "__type__": "cc.Vec3",
  869. "x": -174.34031597717004,
  870. "y": 179.90683573579,
  871. "z": 25.967185849944748
  872. },
  873. "_id": "8a5oWwaqxLdYrJXc8zrDfL"
  874. },
  875. {
  876. "__type__": "cc.ModelComponent",
  877. "_name": "",
  878. "_objFlags": 0,
  879. "node": {
  880. "__id__": 22
  881. },
  882. "_enabled": true,
  883. "_materials": [
  884. {
  885. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  886. }
  887. ],
  888. "_visFlags": 0,
  889. "lightmapSettings": {
  890. "__id__": 24
  891. },
  892. "_mesh": {
  893. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@01a55"
  894. },
  895. "_shadowCastingMode": 0,
  896. "_enableMorph": true,
  897. "_id": "ecmkvfdelN0qo+PZtjNE6s"
  898. },
  899. {
  900. "__type__": "cc.ModelLightmapSettings",
  901. "texture": null,
  902. "uvParam": {
  903. "__type__": "cc.Vec4",
  904. "x": 0,
  905. "y": 0,
  906. "z": 0,
  907. "w": 0
  908. },
  909. "_bakeable": false,
  910. "_castShadow": false,
  911. "_receiveShadow": false,
  912. "_recieveShadow": false,
  913. "_lightmapSize": 64
  914. },
  915. {
  916. "__type__": "cc.PrefabInfo",
  917. "root": {
  918. "__id__": 11
  919. },
  920. "asset": {
  921. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  922. },
  923. "fileId": "9846sjBxhKnLLqn64gyBsd",
  924. "sync": false,
  925. "_synced": {
  926. "default": false,
  927. "serializable": false
  928. }
  929. },
  930. {
  931. "__type__": "cc.PrefabInfo",
  932. "root": {
  933. "__id__": 11
  934. },
  935. "asset": {
  936. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  937. },
  938. "fileId": "94Nd+oMM5Iw5aHlhbAL0oK",
  939. "sync": false,
  940. "_synced": {
  941. "default": false,
  942. "serializable": false
  943. }
  944. },
  945. {
  946. "__type__": "cc.PrefabInfo",
  947. "root": {
  948. "__id__": 11
  949. },
  950. "asset": {
  951. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  952. },
  953. "fileId": "e9E6o9zeZJoZ/7iJg0dROb",
  954. "sync": false,
  955. "_synced": {
  956. "default": false,
  957. "serializable": false
  958. }
  959. },
  960. {
  961. "__type__": "cc.Node",
  962. "_name": "polySurface2",
  963. "_objFlags": 0,
  964. "_parent": {
  965. "__id__": 15
  966. },
  967. "_children": [],
  968. "_active": true,
  969. "_components": [
  970. {
  971. "__id__": 29
  972. }
  973. ],
  974. "_prefab": {
  975. "__id__": 31
  976. },
  977. "_lpos": {
  978. "__type__": "cc.Vec3",
  979. "x": -0.0919497013092041,
  980. "y": -0.0560492798686028,
  981. "z": -0.104193523526192
  982. },
  983. "_lrot": {
  984. "__type__": "cc.Quat",
  985. "x": 0.7015816570744882,
  986. "y": -0.11412622036854037,
  987. "z": -0.6141477824497482,
  988. "w": -0.34290069348583047
  989. },
  990. "_lscale": {
  991. "__type__": "cc.Vec3",
  992. "x": 0.999999821186066,
  993. "y": 0.999999940395355,
  994. "z": 0.999999940395355
  995. },
  996. "_layer": 1073741824,
  997. "_euler": {
  998. "__type__": "cc.Vec3",
  999. "x": -139.93593026119527,
  1000. "y": 76.8510659142986,
  1001. "z": 15.132117863577827
  1002. },
  1003. "_id": "09veLaWIhM3JCyB1PYr8nS"
  1004. },
  1005. {
  1006. "__type__": "cc.ModelComponent",
  1007. "_name": "",
  1008. "_objFlags": 0,
  1009. "node": {
  1010. "__id__": 28
  1011. },
  1012. "_enabled": true,
  1013. "_materials": [
  1014. {
  1015. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1016. }
  1017. ],
  1018. "_visFlags": 0,
  1019. "lightmapSettings": {
  1020. "__id__": 30
  1021. },
  1022. "_mesh": {
  1023. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@db573"
  1024. },
  1025. "_shadowCastingMode": 0,
  1026. "_enableMorph": true,
  1027. "_id": "7aRvLW/KtEYLAHSjHJriSq"
  1028. },
  1029. {
  1030. "__type__": "cc.ModelLightmapSettings",
  1031. "texture": null,
  1032. "uvParam": {
  1033. "__type__": "cc.Vec4",
  1034. "x": 0,
  1035. "y": 0,
  1036. "z": 0,
  1037. "w": 0
  1038. },
  1039. "_bakeable": false,
  1040. "_castShadow": false,
  1041. "_receiveShadow": false,
  1042. "_recieveShadow": false,
  1043. "_lightmapSize": 64
  1044. },
  1045. {
  1046. "__type__": "cc.PrefabInfo",
  1047. "root": {
  1048. "__id__": 11
  1049. },
  1050. "asset": {
  1051. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1052. },
  1053. "fileId": "49ENXM+LdNNYs0PoG3dRS6",
  1054. "sync": false,
  1055. "_synced": {
  1056. "default": false,
  1057. "serializable": false
  1058. }
  1059. },
  1060. {
  1061. "__type__": "cc.PrefabInfo",
  1062. "root": {
  1063. "__id__": 11
  1064. },
  1065. "asset": {
  1066. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1067. },
  1068. "fileId": "845KcJ/fxHwYXioKKykMSa",
  1069. "sync": false,
  1070. "_synced": {
  1071. "default": false,
  1072. "serializable": false
  1073. }
  1074. },
  1075. {
  1076. "__type__": "cc.Node",
  1077. "_name": "polySurface3",
  1078. "_objFlags": 0,
  1079. "_parent": {
  1080. "__id__": 14
  1081. },
  1082. "_children": [],
  1083. "_active": true,
  1084. "_components": [
  1085. {
  1086. "__id__": 34
  1087. }
  1088. ],
  1089. "_prefab": {
  1090. "__id__": 36
  1091. },
  1092. "_lpos": {
  1093. "__type__": "cc.Vec3",
  1094. "x": -0.00320419040508568,
  1095. "y": -0.0145574426278472,
  1096. "z": 0.0598691701889038
  1097. },
  1098. "_lrot": {
  1099. "__type__": "cc.Quat",
  1100. "x": 0.7128733460429766,
  1101. "y": -0.12168294300433076,
  1102. "z": 0.6820342005829816,
  1103. "w": 0.10878512360809396
  1104. },
  1105. "_lscale": {
  1106. "__type__": "cc.Vec3",
  1107. "x": 1,
  1108. "y": 1,
  1109. "z": 1
  1110. },
  1111. "_layer": 1073741824,
  1112. "_euler": {
  1113. "__type__": "cc.Vec3",
  1114. "x": 161.26539208109207,
  1115. "y": -87.70424055853603,
  1116. "z": -1.4382008261836212
  1117. },
  1118. "_id": "72DcSBsDdHJoQK26MR9CgT"
  1119. },
  1120. {
  1121. "__type__": "cc.ModelComponent",
  1122. "_name": "",
  1123. "_objFlags": 0,
  1124. "node": {
  1125. "__id__": 33
  1126. },
  1127. "_enabled": true,
  1128. "_materials": [
  1129. {
  1130. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1131. }
  1132. ],
  1133. "_visFlags": 0,
  1134. "lightmapSettings": {
  1135. "__id__": 35
  1136. },
  1137. "_mesh": {
  1138. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@8c3a2"
  1139. },
  1140. "_shadowCastingMode": 0,
  1141. "_enableMorph": true,
  1142. "_id": "a8GHoj/5ZEcq0xwrGeNIBx"
  1143. },
  1144. {
  1145. "__type__": "cc.ModelLightmapSettings",
  1146. "texture": null,
  1147. "uvParam": {
  1148. "__type__": "cc.Vec4",
  1149. "x": 0,
  1150. "y": 0,
  1151. "z": 0,
  1152. "w": 0
  1153. },
  1154. "_bakeable": false,
  1155. "_castShadow": false,
  1156. "_receiveShadow": false,
  1157. "_recieveShadow": false,
  1158. "_lightmapSize": 64
  1159. },
  1160. {
  1161. "__type__": "cc.PrefabInfo",
  1162. "root": {
  1163. "__id__": 11
  1164. },
  1165. "asset": {
  1166. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1167. },
  1168. "fileId": "b5qCX/gV5EyqfRXoVprQdh",
  1169. "sync": false,
  1170. "_synced": {
  1171. "default": false,
  1172. "serializable": false
  1173. }
  1174. },
  1175. {
  1176. "__type__": "cc.PrefabInfo",
  1177. "root": {
  1178. "__id__": 11
  1179. },
  1180. "asset": {
  1181. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1182. },
  1183. "fileId": "a7GizojQBFlbBbgG4ZQ5nd",
  1184. "sync": false,
  1185. "_synced": {
  1186. "default": false,
  1187. "serializable": false
  1188. }
  1189. },
  1190. {
  1191. "__type__": "cc.PrefabInfo",
  1192. "root": {
  1193. "__id__": 11
  1194. },
  1195. "asset": {
  1196. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1197. },
  1198. "fileId": "13lRCYC/NCvo16Fb5Ssqeh",
  1199. "sync": false,
  1200. "_synced": {
  1201. "default": false,
  1202. "serializable": false
  1203. }
  1204. },
  1205. {
  1206. "__type__": "cc.PrefabInfo",
  1207. "root": {
  1208. "__id__": 11
  1209. },
  1210. "asset": {
  1211. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1212. },
  1213. "fileId": "a4aKfK2I9CNZuy9+WiT2Yg",
  1214. "sync": false,
  1215. "_synced": {
  1216. "default": false,
  1217. "serializable": false
  1218. }
  1219. },
  1220. {
  1221. "__type__": "cc.AnimationComponent",
  1222. "_name": "Hand_R<AnimationComponent>",
  1223. "_objFlags": 0,
  1224. "node": {
  1225. "__id__": 11
  1226. },
  1227. "_enabled": true,
  1228. "playOnLoad": true,
  1229. "_clips": [
  1230. {
  1231. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@7f91a"
  1232. },
  1233. {
  1234. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@a7884"
  1235. },
  1236. {
  1237. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@18ed3"
  1238. },
  1239. {
  1240. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@c2696"
  1241. },
  1242. {
  1243. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@50b81"
  1244. }
  1245. ],
  1246. "_defaultClip": null,
  1247. "_id": "2dvL349vZK1Jin7Z658jkM"
  1248. },
  1249. {
  1250. "__type__": "cc.PrefabInfo",
  1251. "root": {
  1252. "__id__": 11
  1253. },
  1254. "asset": {
  1255. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1256. },
  1257. "fileId": "9bHb4l/XtAn5Tv/diNe0aB",
  1258. "sync": false,
  1259. "_synced": {
  1260. "default": false,
  1261. "serializable": false
  1262. }
  1263. },
  1264. {
  1265. "__type__": "cc.Node",
  1266. "_name": "RootNode",
  1267. "_objFlags": 0,
  1268. "_parent": {
  1269. "__id__": 5
  1270. },
  1271. "_children": [
  1272. {
  1273. "__id__": 43
  1274. }
  1275. ],
  1276. "_active": true,
  1277. "_components": [],
  1278. "_prefab": {
  1279. "__id__": 69
  1280. },
  1281. "_lpos": {
  1282. "__type__": "cc.Vec3",
  1283. "x": 0,
  1284. "y": 0,
  1285. "z": 0
  1286. },
  1287. "_lrot": {
  1288. "__type__": "cc.Quat",
  1289. "x": 0,
  1290. "y": 0,
  1291. "z": 0,
  1292. "w": 1
  1293. },
  1294. "_lscale": {
  1295. "__type__": "cc.Vec3",
  1296. "x": 1,
  1297. "y": 1,
  1298. "z": 1
  1299. },
  1300. "_layer": 1073741824,
  1301. "_euler": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 0,
  1304. "y": 0,
  1305. "z": 0
  1306. },
  1307. "_id": "7aDsstoypNT50MRsCClDzC"
  1308. },
  1309. {
  1310. "__type__": "cc.Node",
  1311. "_name": "Arm",
  1312. "_objFlags": 0,
  1313. "_parent": {
  1314. "__id__": 42
  1315. },
  1316. "_children": [
  1317. {
  1318. "__id__": 44
  1319. }
  1320. ],
  1321. "_active": true,
  1322. "_components": [],
  1323. "_prefab": {
  1324. "__id__": 68
  1325. },
  1326. "_lpos": {
  1327. "__type__": "cc.Vec3",
  1328. "x": 0,
  1329. "y": 0,
  1330. "z": 0
  1331. },
  1332. "_lrot": {
  1333. "__type__": "cc.Quat",
  1334. "x": -0.7071068407911906,
  1335. "y": 0,
  1336. "z": 0,
  1337. "w": 0.7071067215818996
  1338. },
  1339. "_lscale": {
  1340. "__type__": "cc.Vec3",
  1341. "x": 2.49999737739563,
  1342. "y": 2.49999737739563,
  1343. "z": 2.49999737739563
  1344. },
  1345. "_layer": 1073741824,
  1346. "_euler": {
  1347. "__type__": "cc.Vec3",
  1348. "x": -90.0000096593463,
  1349. "y": 0,
  1350. "z": 0
  1351. },
  1352. "_id": "75lWJqRVRF2q+qnAuiUrXY"
  1353. },
  1354. {
  1355. "__type__": "cc.Node",
  1356. "_name": "upper_arm_R",
  1357. "_objFlags": 0,
  1358. "_parent": {
  1359. "__id__": 43
  1360. },
  1361. "_children": [
  1362. {
  1363. "__id__": 45
  1364. },
  1365. {
  1366. "__id__": 63
  1367. }
  1368. ],
  1369. "_active": true,
  1370. "_components": [],
  1371. "_prefab": {
  1372. "__id__": 67
  1373. },
  1374. "_lpos": {
  1375. "__type__": "cc.Vec3",
  1376. "x": -0.00187119445763528,
  1377. "y": 0.0199693888425827,
  1378. "z": 0.0198789201676846
  1379. },
  1380. "_lrot": {
  1381. "__type__": "cc.Quat",
  1382. "x": 0.7128733386984369,
  1383. "y": -0.12168298645414753,
  1384. "z": 0.6820341935561693,
  1385. "w": -0.10878516719079445
  1386. },
  1387. "_lscale": {
  1388. "__type__": "cc.Vec3",
  1389. "x": 1,
  1390. "y": 1,
  1391. "z": 1
  1392. },
  1393. "_layer": 1073741824,
  1394. "_euler": {
  1395. "__type__": "cc.Vec3",
  1396. "x": 179.34133534803925,
  1397. "y": -87.57588334232474,
  1398. "z": -18.776628506046173
  1399. },
  1400. "_id": "85j8ZU1Z5C7qIzDDlJxTIm"
  1401. },
  1402. {
  1403. "__type__": "cc.Node",
  1404. "_name": "lower_arm_R",
  1405. "_objFlags": 0,
  1406. "_parent": {
  1407. "__id__": 44
  1408. },
  1409. "_children": [
  1410. {
  1411. "__id__": 46
  1412. },
  1413. {
  1414. "__id__": 58
  1415. }
  1416. ],
  1417. "_active": true,
  1418. "_components": [],
  1419. "_prefab": {
  1420. "__id__": 62
  1421. },
  1422. "_lpos": {
  1423. "__type__": "cc.Vec3",
  1424. "x": -4.76837147544984e-9,
  1425. "y": 0.122766919434071,
  1426. "z": 1.19209286886246e-9
  1427. },
  1428. "_lrot": {
  1429. "__type__": "cc.Quat",
  1430. "x": 0.4669232648894713,
  1431. "y": 0.8732426729669459,
  1432. "z": 0.10001992396566957,
  1433. "w": -0.09708714448577543
  1434. },
  1435. "_lscale": {
  1436. "__type__": "cc.Vec3",
  1437. "x": 1.00000011920929,
  1438. "y": 1,
  1439. "z": 1.00000023841858
  1440. },
  1441. "_layer": 1073741824,
  1442. "_euler": {
  1443. "__type__": "cc.Vec3",
  1444. "x": -26.00358163916388,
  1445. "y": -154.24718673728168,
  1446. "z": 52.754859968015055
  1447. },
  1448. "_id": "99El8XlKBAxY1iTAbPxrAO"
  1449. },
  1450. {
  1451. "__type__": "cc.Node",
  1452. "_name": "transform1",
  1453. "_objFlags": 0,
  1454. "_parent": {
  1455. "__id__": 45
  1456. },
  1457. "_children": [
  1458. {
  1459. "__id__": 47
  1460. }
  1461. ],
  1462. "_active": true,
  1463. "_components": [],
  1464. "_prefab": {
  1465. "__id__": 57
  1466. },
  1467. "_lpos": {
  1468. "__type__": "cc.Vec3",
  1469. "x": -0.11739581823349,
  1470. "y": 0.0252596475183964,
  1471. "z": -0.094342976808548
  1472. },
  1473. "_lrot": {
  1474. "__type__": "cc.Quat",
  1475. "x": -0.5686733656216296,
  1476. "y": 0.09836318228904103,
  1477. "z": 0.7051433838438258,
  1478. "w": 0.4119564246662746
  1479. },
  1480. "_lscale": {
  1481. "__type__": "cc.Vec3",
  1482. "x": 0.999999821186066,
  1483. "y": 0.999999940395355,
  1484. "z": 0.999999940395355
  1485. },
  1486. "_layer": 1073741824,
  1487. "_euler": {
  1488. "__type__": "cc.Vec3",
  1489. "x": -136.55882415880845,
  1490. "y": 90.89566604296236,
  1491. "z": 27.976128283550537
  1492. },
  1493. "_id": "10RwjNwKJOxYr7onB/o+c0"
  1494. },
  1495. {
  1496. "__type__": "cc.Node",
  1497. "_name": "hand_R",
  1498. "_objFlags": 0,
  1499. "_parent": {
  1500. "__id__": 46
  1501. },
  1502. "_children": [
  1503. {
  1504. "__id__": 48
  1505. },
  1506. {
  1507. "__id__": 52
  1508. }
  1509. ],
  1510. "_active": true,
  1511. "_components": [],
  1512. "_prefab": {
  1513. "__id__": 56
  1514. },
  1515. "_lpos": {
  1516. "__type__": "cc.Vec3",
  1517. "x": -0.0479476489126682,
  1518. "y": -0.163001760840416,
  1519. "z": -0.00526508083567023
  1520. },
  1521. "_lrot": {
  1522. "__type__": "cc.Quat",
  1523. "x": 0.17887440785674324,
  1524. "y": 0.08786853629725101,
  1525. "z": 0.9795610561564844,
  1526. "w": -0.027261764514996394
  1527. },
  1528. "_lscale": {
  1529. "__type__": "cc.Vec3",
  1530. "x": 0.99999988079071,
  1531. "y": 0.999999940395355,
  1532. "z": 0.999999940395355
  1533. },
  1534. "_layer": 1073741824,
  1535. "_euler": {
  1536. "__type__": "cc.Vec3",
  1537. "x": -169.51710436825414,
  1538. "y": -159.18734036749785,
  1539. "z": -1.259133752988458
  1540. },
  1541. "_id": "c0gEpNS8FAL5gaaeeom8kW"
  1542. },
  1543. {
  1544. "__type__": "cc.Node",
  1545. "_name": "transform2",
  1546. "_objFlags": 0,
  1547. "_parent": {
  1548. "__id__": 47
  1549. },
  1550. "_children": [
  1551. {
  1552. "__id__": 49
  1553. }
  1554. ],
  1555. "_active": true,
  1556. "_components": [],
  1557. "_prefab": {
  1558. "__id__": 51
  1559. },
  1560. "_lpos": {
  1561. "__type__": "cc.Vec3",
  1562. "x": -0.0573748089373112,
  1563. "y": -0.168648242950439,
  1564. "z": -0.0279340911656618
  1565. },
  1566. "_lrot": {
  1567. "__type__": "cc.Quat",
  1568. "x": 0.16598473782119896,
  1569. "y": 0.7220834621029274,
  1570. "z": 0.6543067809145152,
  1571. "w": 0.15141722827063847
  1572. },
  1573. "_lscale": {
  1574. "__type__": "cc.Vec3",
  1575. "x": 0.4000004529953,
  1576. "y": 0.4000004529953,
  1577. "z": 0.4000004529953
  1578. },
  1579. "_layer": 1073741824,
  1580. "_euler": {
  1581. "__type__": "cc.Vec3",
  1582. "x": -84.34031666114561,
  1583. "y": 179.90683531759714,
  1584. "z": 25.967184866346347
  1585. },
  1586. "_id": "56kwFA0LRFSY/H/qhZpwmG"
  1587. },
  1588. {
  1589. "__type__": "cc.Node",
  1590. "_name": "Guns",
  1591. "_objFlags": 0,
  1592. "_parent": {
  1593. "__id__": 48
  1594. },
  1595. "_children": [],
  1596. "_active": true,
  1597. "_components": [],
  1598. "_prefab": {
  1599. "__id__": 50
  1600. },
  1601. "_lpos": {
  1602. "__type__": "cc.Vec3",
  1603. "x": 0.0926190093159676,
  1604. "y": 0.115806952118874,
  1605. "z": 0.477917075157166
  1606. },
  1607. "_lrot": {
  1608. "__type__": "cc.Quat",
  1609. "x": 2.1404575678757462e-17,
  1610. "y": 0.26985764707823545,
  1611. "z": 7.6415069643379115e-19,
  1612. "w": 0.962900228639187
  1613. },
  1614. "_lscale": {
  1615. "__type__": "cc.Vec3",
  1616. "x": 1,
  1617. "y": 1,
  1618. "z": 1
  1619. },
  1620. "_layer": 1073741824,
  1621. "_euler": {
  1622. "__type__": "cc.Vec3",
  1623. "x": 2.33815583881749e-15,
  1624. "y": 31.311592403165022,
  1625. "z": 7.462190073589119e-16
  1626. },
  1627. "_id": "fdgWVEgBdNIYjcX9lpMEho"
  1628. },
  1629. {
  1630. "__type__": "cc.PrefabInfo",
  1631. "root": {
  1632. "__id__": 5
  1633. },
  1634. "asset": {
  1635. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1636. },
  1637. "fileId": "68MfT8AxVHm7qg9uJaGhQ1",
  1638. "sync": false,
  1639. "_synced": {
  1640. "default": false,
  1641. "serializable": false
  1642. }
  1643. },
  1644. {
  1645. "__type__": "cc.PrefabInfo",
  1646. "root": {
  1647. "__id__": 5
  1648. },
  1649. "asset": {
  1650. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1651. },
  1652. "fileId": "f8shPjlUtH65IDPHTkEB2U",
  1653. "sync": false,
  1654. "_synced": {
  1655. "default": false,
  1656. "serializable": false
  1657. }
  1658. },
  1659. {
  1660. "__type__": "cc.Node",
  1661. "_name": "polySurface1",
  1662. "_objFlags": 0,
  1663. "_parent": {
  1664. "__id__": 47
  1665. },
  1666. "_children": [],
  1667. "_active": true,
  1668. "_components": [
  1669. {
  1670. "__id__": 53
  1671. }
  1672. ],
  1673. "_prefab": {
  1674. "__id__": 55
  1675. },
  1676. "_lpos": {
  1677. "__type__": "cc.Vec3",
  1678. "x": -0.123767487704754,
  1679. "y": -0.172050505876541,
  1680. "z": -0.00599880423396826
  1681. },
  1682. "_lrot": {
  1683. "__type__": "cc.Quat",
  1684. "x": 0.010300790094140692,
  1685. "y": 0.047925357400886145,
  1686. "z": 0.9732548721471967,
  1687. "w": 0.22443709070289086
  1688. },
  1689. "_lscale": {
  1690. "__type__": "cc.Vec3",
  1691. "x": 1.00000011920929,
  1692. "y": 1.00000011920929,
  1693. "z": 1.00000011920929
  1694. },
  1695. "_layer": 1073741824,
  1696. "_euler": {
  1697. "__type__": "cc.Vec3",
  1698. "x": -174.34031597717004,
  1699. "y": 179.90683573579,
  1700. "z": 25.967185849944748
  1701. },
  1702. "_id": "f8vRqbvStDoYFCbFzwUF7J"
  1703. },
  1704. {
  1705. "__type__": "cc.ModelComponent",
  1706. "_name": "",
  1707. "_objFlags": 0,
  1708. "node": {
  1709. "__id__": 52
  1710. },
  1711. "_enabled": true,
  1712. "_materials": [
  1713. {
  1714. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1715. }
  1716. ],
  1717. "_visFlags": 0,
  1718. "lightmapSettings": {
  1719. "__id__": 54
  1720. },
  1721. "_mesh": {
  1722. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@01a55"
  1723. },
  1724. "_shadowCastingMode": 0,
  1725. "_enableMorph": true,
  1726. "_id": "b4qoqlAzVFt5A8xCT68XqM"
  1727. },
  1728. {
  1729. "__type__": "cc.ModelLightmapSettings",
  1730. "texture": null,
  1731. "uvParam": {
  1732. "__type__": "cc.Vec4",
  1733. "x": 0,
  1734. "y": 0,
  1735. "z": 0,
  1736. "w": 0
  1737. },
  1738. "_bakeable": false,
  1739. "_castShadow": false,
  1740. "_receiveShadow": false,
  1741. "_recieveShadow": false,
  1742. "_lightmapSize": 64
  1743. },
  1744. {
  1745. "__type__": "cc.PrefabInfo",
  1746. "root": {
  1747. "__id__": 5
  1748. },
  1749. "asset": {
  1750. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1751. },
  1752. "fileId": "9846sjBxhKnLLqn64gyBsd",
  1753. "sync": false,
  1754. "_synced": {
  1755. "default": false,
  1756. "serializable": false
  1757. }
  1758. },
  1759. {
  1760. "__type__": "cc.PrefabInfo",
  1761. "root": {
  1762. "__id__": 5
  1763. },
  1764. "asset": {
  1765. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1766. },
  1767. "fileId": "94Nd+oMM5Iw5aHlhbAL0oK",
  1768. "sync": false,
  1769. "_synced": {
  1770. "default": false,
  1771. "serializable": false
  1772. }
  1773. },
  1774. {
  1775. "__type__": "cc.PrefabInfo",
  1776. "root": {
  1777. "__id__": 5
  1778. },
  1779. "asset": {
  1780. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1781. },
  1782. "fileId": "e9E6o9zeZJoZ/7iJg0dROb",
  1783. "sync": false,
  1784. "_synced": {
  1785. "default": false,
  1786. "serializable": false
  1787. }
  1788. },
  1789. {
  1790. "__type__": "cc.Node",
  1791. "_name": "polySurface2",
  1792. "_objFlags": 0,
  1793. "_parent": {
  1794. "__id__": 45
  1795. },
  1796. "_children": [],
  1797. "_active": true,
  1798. "_components": [
  1799. {
  1800. "__id__": 59
  1801. }
  1802. ],
  1803. "_prefab": {
  1804. "__id__": 61
  1805. },
  1806. "_lpos": {
  1807. "__type__": "cc.Vec3",
  1808. "x": -0.0919497013092041,
  1809. "y": -0.0560492798686028,
  1810. "z": -0.104193523526192
  1811. },
  1812. "_lrot": {
  1813. "__type__": "cc.Quat",
  1814. "x": 0.7015816570744882,
  1815. "y": -0.11412622036854037,
  1816. "z": -0.6141477824497482,
  1817. "w": -0.34290069348583047
  1818. },
  1819. "_lscale": {
  1820. "__type__": "cc.Vec3",
  1821. "x": 0.999999821186066,
  1822. "y": 0.999999940395355,
  1823. "z": 0.999999940395355
  1824. },
  1825. "_layer": 1073741824,
  1826. "_euler": {
  1827. "__type__": "cc.Vec3",
  1828. "x": -139.93593026119527,
  1829. "y": 76.8510659142986,
  1830. "z": 15.132117863577827
  1831. },
  1832. "_id": "91CoN1OB1Nqq550qP2zc/3"
  1833. },
  1834. {
  1835. "__type__": "cc.ModelComponent",
  1836. "_name": "",
  1837. "_objFlags": 0,
  1838. "node": {
  1839. "__id__": 58
  1840. },
  1841. "_enabled": true,
  1842. "_materials": [
  1843. {
  1844. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1845. }
  1846. ],
  1847. "_visFlags": 0,
  1848. "lightmapSettings": {
  1849. "__id__": 60
  1850. },
  1851. "_mesh": {
  1852. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@db573"
  1853. },
  1854. "_shadowCastingMode": 0,
  1855. "_enableMorph": true,
  1856. "_id": "090CcRgnVEWJUuXhjn884n"
  1857. },
  1858. {
  1859. "__type__": "cc.ModelLightmapSettings",
  1860. "texture": null,
  1861. "uvParam": {
  1862. "__type__": "cc.Vec4",
  1863. "x": 0,
  1864. "y": 0,
  1865. "z": 0,
  1866. "w": 0
  1867. },
  1868. "_bakeable": false,
  1869. "_castShadow": false,
  1870. "_receiveShadow": false,
  1871. "_recieveShadow": false,
  1872. "_lightmapSize": 64
  1873. },
  1874. {
  1875. "__type__": "cc.PrefabInfo",
  1876. "root": {
  1877. "__id__": 5
  1878. },
  1879. "asset": {
  1880. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1881. },
  1882. "fileId": "49ENXM+LdNNYs0PoG3dRS6",
  1883. "sync": false,
  1884. "_synced": {
  1885. "default": false,
  1886. "serializable": false
  1887. }
  1888. },
  1889. {
  1890. "__type__": "cc.PrefabInfo",
  1891. "root": {
  1892. "__id__": 5
  1893. },
  1894. "asset": {
  1895. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1896. },
  1897. "fileId": "845KcJ/fxHwYXioKKykMSa",
  1898. "sync": false,
  1899. "_synced": {
  1900. "default": false,
  1901. "serializable": false
  1902. }
  1903. },
  1904. {
  1905. "__type__": "cc.Node",
  1906. "_name": "polySurface3",
  1907. "_objFlags": 0,
  1908. "_parent": {
  1909. "__id__": 44
  1910. },
  1911. "_children": [],
  1912. "_active": true,
  1913. "_components": [
  1914. {
  1915. "__id__": 64
  1916. }
  1917. ],
  1918. "_prefab": {
  1919. "__id__": 66
  1920. },
  1921. "_lpos": {
  1922. "__type__": "cc.Vec3",
  1923. "x": -0.00320419040508568,
  1924. "y": -0.0145574426278472,
  1925. "z": 0.0598691701889038
  1926. },
  1927. "_lrot": {
  1928. "__type__": "cc.Quat",
  1929. "x": 0.7128733460429766,
  1930. "y": -0.12168294300433076,
  1931. "z": 0.6820342005829816,
  1932. "w": 0.10878512360809396
  1933. },
  1934. "_lscale": {
  1935. "__type__": "cc.Vec3",
  1936. "x": 1,
  1937. "y": 1,
  1938. "z": 1
  1939. },
  1940. "_layer": 1073741824,
  1941. "_euler": {
  1942. "__type__": "cc.Vec3",
  1943. "x": 161.26539208109207,
  1944. "y": -87.70424055853603,
  1945. "z": -1.4382008261836212
  1946. },
  1947. "_id": "840jsDsLhJW5+9iSf0YpUG"
  1948. },
  1949. {
  1950. "__type__": "cc.ModelComponent",
  1951. "_name": "",
  1952. "_objFlags": 0,
  1953. "node": {
  1954. "__id__": 63
  1955. },
  1956. "_enabled": true,
  1957. "_materials": [
  1958. {
  1959. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1960. }
  1961. ],
  1962. "_visFlags": 0,
  1963. "lightmapSettings": {
  1964. "__id__": 65
  1965. },
  1966. "_mesh": {
  1967. "__uuid__": "57122fad-a4bb-4503-99b7-f7738db893f6@8c3a2"
  1968. },
  1969. "_shadowCastingMode": 0,
  1970. "_enableMorph": true,
  1971. "_id": "2aZJEEvgdOMpbwRTQwOyPJ"
  1972. },
  1973. {
  1974. "__type__": "cc.ModelLightmapSettings",
  1975. "texture": null,
  1976. "uvParam": {
  1977. "__type__": "cc.Vec4",
  1978. "x": 0,
  1979. "y": 0,
  1980. "z": 0,
  1981. "w": 0
  1982. },
  1983. "_bakeable": false,
  1984. "_castShadow": false,
  1985. "_receiveShadow": false,
  1986. "_recieveShadow": false,
  1987. "_lightmapSize": 64
  1988. },
  1989. {
  1990. "__type__": "cc.PrefabInfo",
  1991. "root": {
  1992. "__id__": 5
  1993. },
  1994. "asset": {
  1995. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1996. },
  1997. "fileId": "b5qCX/gV5EyqfRXoVprQdh",
  1998. "sync": false,
  1999. "_synced": {
  2000. "default": false,
  2001. "serializable": false
  2002. }
  2003. },
  2004. {
  2005. "__type__": "cc.PrefabInfo",
  2006. "root": {
  2007. "__id__": 5
  2008. },
  2009. "asset": {
  2010. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2011. },
  2012. "fileId": "a7GizojQBFlbBbgG4ZQ5nd",
  2013. "sync": false,
  2014. "_synced": {
  2015. "default": false,
  2016. "serializable": false
  2017. }
  2018. },
  2019. {
  2020. "__type__": "cc.PrefabInfo",
  2021. "root": {
  2022. "__id__": 5
  2023. },
  2024. "asset": {
  2025. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2026. },
  2027. "fileId": "13lRCYC/NCvo16Fb5Ssqeh",
  2028. "sync": false,
  2029. "_synced": {
  2030. "default": false,
  2031. "serializable": false
  2032. }
  2033. },
  2034. {
  2035. "__type__": "cc.PrefabInfo",
  2036. "root": {
  2037. "__id__": 5
  2038. },
  2039. "asset": {
  2040. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2041. },
  2042. "fileId": "a4aKfK2I9CNZuy9+WiT2Yg",
  2043. "sync": false,
  2044. "_synced": {
  2045. "default": false,
  2046. "serializable": false
  2047. }
  2048. },
  2049. {
  2050. "__type__": "cc.PrefabInfo",
  2051. "root": {
  2052. "__id__": 5
  2053. },
  2054. "asset": {
  2055. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2056. },
  2057. "fileId": "3aC5oiKOBEBbDRpjrEmq//",
  2058. "sync": false,
  2059. "_synced": {
  2060. "default": false,
  2061. "serializable": false
  2062. }
  2063. },
  2064. {
  2065. "__type__": "cc.Node",
  2066. "_name": "LeftEndPos",
  2067. "_objFlags": 0,
  2068. "_parent": {
  2069. "__id__": 1
  2070. },
  2071. "_children": [],
  2072. "_active": true,
  2073. "_components": [
  2074. {
  2075. "__id__": 72
  2076. }
  2077. ],
  2078. "_prefab": null,
  2079. "_lpos": {
  2080. "__type__": "cc.Vec3",
  2081. "x": -0.5,
  2082. "y": 0,
  2083. "z": 1.76
  2084. },
  2085. "_lrot": {
  2086. "__type__": "cc.Quat",
  2087. "x": 0,
  2088. "y": 0,
  2089. "z": 0,
  2090. "w": 1
  2091. },
  2092. "_lscale": {
  2093. "__type__": "cc.Vec3",
  2094. "x": 0.5,
  2095. "y": 0.5,
  2096. "z": 0.5
  2097. },
  2098. "_layer": 1073741824,
  2099. "_euler": {
  2100. "__type__": "cc.Vec3",
  2101. "x": 0,
  2102. "y": 0,
  2103. "z": 0
  2104. },
  2105. "_id": "e3MPxHuLVDF7zDdYVEGYkl"
  2106. },
  2107. {
  2108. "__type__": "cc.ModelComponent",
  2109. "_name": "Cube<ModelComponent>",
  2110. "_objFlags": 0,
  2111. "node": {
  2112. "__id__": 71
  2113. },
  2114. "_enabled": true,
  2115. "_materials": [
  2116. {
  2117. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2118. }
  2119. ],
  2120. "_visFlags": 0,
  2121. "lightmapSettings": {
  2122. "__id__": 73
  2123. },
  2124. "_mesh": {
  2125. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2126. },
  2127. "_shadowCastingMode": 0,
  2128. "_enableMorph": true,
  2129. "_id": "0dryLe2bhOH4jjm+JtwjlB"
  2130. },
  2131. {
  2132. "__type__": "cc.ModelLightmapSettings",
  2133. "texture": null,
  2134. "uvParam": {
  2135. "__type__": "cc.Vec4",
  2136. "x": 0,
  2137. "y": 0,
  2138. "z": 0,
  2139. "w": 0
  2140. },
  2141. "_bakeable": false,
  2142. "_castShadow": false,
  2143. "_receiveShadow": false,
  2144. "_recieveShadow": false,
  2145. "_lightmapSize": 64
  2146. },
  2147. {
  2148. "__type__": "cc.Node",
  2149. "_name": "MiddleEndPos",
  2150. "_objFlags": 0,
  2151. "_parent": {
  2152. "__id__": 1
  2153. },
  2154. "_children": [],
  2155. "_active": true,
  2156. "_components": [
  2157. {
  2158. "__id__": 75
  2159. }
  2160. ],
  2161. "_prefab": null,
  2162. "_lpos": {
  2163. "__type__": "cc.Vec3",
  2164. "x": 0,
  2165. "y": 0,
  2166. "z": 1.76
  2167. },
  2168. "_lrot": {
  2169. "__type__": "cc.Quat",
  2170. "x": 0,
  2171. "y": 0,
  2172. "z": 0,
  2173. "w": 1
  2174. },
  2175. "_lscale": {
  2176. "__type__": "cc.Vec3",
  2177. "x": 0.5,
  2178. "y": 0.5,
  2179. "z": 0.5
  2180. },
  2181. "_layer": 1073741824,
  2182. "_euler": {
  2183. "__type__": "cc.Vec3",
  2184. "x": 0,
  2185. "y": 0,
  2186. "z": 0
  2187. },
  2188. "_id": "f8JMAUTaxFGatLoLROZVWX"
  2189. },
  2190. {
  2191. "__type__": "cc.ModelComponent",
  2192. "_name": "Cube<ModelComponent>",
  2193. "_objFlags": 0,
  2194. "node": {
  2195. "__id__": 74
  2196. },
  2197. "_enabled": true,
  2198. "_materials": [
  2199. {
  2200. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2201. }
  2202. ],
  2203. "_visFlags": 0,
  2204. "lightmapSettings": {
  2205. "__id__": 76
  2206. },
  2207. "_mesh": {
  2208. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2209. },
  2210. "_shadowCastingMode": 0,
  2211. "_enableMorph": true,
  2212. "_id": "2dQYIwDB9KOZWb3vMbFfov"
  2213. },
  2214. {
  2215. "__type__": "cc.ModelLightmapSettings",
  2216. "texture": null,
  2217. "uvParam": {
  2218. "__type__": "cc.Vec4",
  2219. "x": 0,
  2220. "y": 0,
  2221. "z": 0,
  2222. "w": 0
  2223. },
  2224. "_bakeable": false,
  2225. "_castShadow": false,
  2226. "_receiveShadow": false,
  2227. "_recieveShadow": false,
  2228. "_lightmapSize": 64
  2229. },
  2230. {
  2231. "__type__": "cc.Node",
  2232. "_name": "RightEndPos",
  2233. "_objFlags": 0,
  2234. "_parent": {
  2235. "__id__": 1
  2236. },
  2237. "_children": [],
  2238. "_active": true,
  2239. "_components": [
  2240. {
  2241. "__id__": 78
  2242. }
  2243. ],
  2244. "_prefab": null,
  2245. "_lpos": {
  2246. "__type__": "cc.Vec3",
  2247. "x": 0.5,
  2248. "y": 0,
  2249. "z": 1.76
  2250. },
  2251. "_lrot": {
  2252. "__type__": "cc.Quat",
  2253. "x": 0,
  2254. "y": 0,
  2255. "z": 0,
  2256. "w": 1
  2257. },
  2258. "_lscale": {
  2259. "__type__": "cc.Vec3",
  2260. "x": 0.5,
  2261. "y": 0.5,
  2262. "z": 0.5
  2263. },
  2264. "_layer": 1073741824,
  2265. "_euler": {
  2266. "__type__": "cc.Vec3",
  2267. "x": 0,
  2268. "y": 0,
  2269. "z": 0
  2270. },
  2271. "_id": "f7JoRfTJxPN56W/zvx1Rkc"
  2272. },
  2273. {
  2274. "__type__": "cc.ModelComponent",
  2275. "_name": "Cube<ModelComponent>",
  2276. "_objFlags": 0,
  2277. "node": {
  2278. "__id__": 77
  2279. },
  2280. "_enabled": true,
  2281. "_materials": [
  2282. {
  2283. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2284. }
  2285. ],
  2286. "_visFlags": 0,
  2287. "lightmapSettings": {
  2288. "__id__": 79
  2289. },
  2290. "_mesh": {
  2291. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@a804a"
  2292. },
  2293. "_shadowCastingMode": 0,
  2294. "_enableMorph": true,
  2295. "_id": "16MGmkvgZLf4TTgDCONj3q"
  2296. },
  2297. {
  2298. "__type__": "cc.ModelLightmapSettings",
  2299. "texture": null,
  2300. "uvParam": {
  2301. "__type__": "cc.Vec4",
  2302. "x": 0,
  2303. "y": 0,
  2304. "z": 0,
  2305. "w": 0
  2306. },
  2307. "_bakeable": false,
  2308. "_castShadow": false,
  2309. "_receiveShadow": false,
  2310. "_recieveShadow": false,
  2311. "_lightmapSize": 64
  2312. },
  2313. {
  2314. "__type__": "cc.Node",
  2315. "_name": "Main Light",
  2316. "_objFlags": 0,
  2317. "_parent": {
  2318. "__id__": 1
  2319. },
  2320. "_children": [],
  2321. "_active": true,
  2322. "_components": [
  2323. {
  2324. "__id__": 81
  2325. }
  2326. ],
  2327. "_prefab": null,
  2328. "_lpos": {
  2329. "__type__": "cc.Vec3",
  2330. "x": 0,
  2331. "y": 0,
  2332. "z": 0
  2333. },
  2334. "_lrot": {
  2335. "__type__": "cc.Quat",
  2336. "x": -0.24999999999999997,
  2337. "y": -0.24999999999999997,
  2338. "z": -0.06698729810778066,
  2339. "w": 0.9330127018922194
  2340. },
  2341. "_lscale": {
  2342. "__type__": "cc.Vec3",
  2343. "x": 1,
  2344. "y": 1,
  2345. "z": 1
  2346. },
  2347. "_layer": 1073741824,
  2348. "_euler": {
  2349. "__type__": "cc.Vec3",
  2350. "x": -30,
  2351. "y": -30,
  2352. "z": 0
  2353. },
  2354. "_id": "c0y6F5f+pAvI805TdmxIjx"
  2355. },
  2356. {
  2357. "__type__": "cc.DirectionalLightComponent",
  2358. "_name": "",
  2359. "_objFlags": 0,
  2360. "node": {
  2361. "__id__": 80
  2362. },
  2363. "_enabled": true,
  2364. "_color": {
  2365. "__type__": "cc.Color",
  2366. "r": 255,
  2367. "g": 255,
  2368. "b": 255,
  2369. "a": 255
  2370. },
  2371. "_useColorTemperature": false,
  2372. "_colorTemperature": 6550,
  2373. "_staticSettings": {
  2374. "__id__": 82
  2375. },
  2376. "_illuminance": 65000,
  2377. "_id": "597uMYCbhEtJQc0ffJlcgA"
  2378. },
  2379. {
  2380. "__type__": "cc.StaticLightSettings",
  2381. "_editorOnly": false,
  2382. "_bakeable": false,
  2383. "_castShadow": false
  2384. },
  2385. {
  2386. "__type__": "cc.Node",
  2387. "_name": "Plane",
  2388. "_objFlags": 0,
  2389. "_parent": {
  2390. "__id__": 1
  2391. },
  2392. "_children": [],
  2393. "_active": true,
  2394. "_components": [
  2395. {
  2396. "__id__": 84
  2397. }
  2398. ],
  2399. "_prefab": null,
  2400. "_lpos": {
  2401. "__type__": "cc.Vec3",
  2402. "x": 0,
  2403. "y": 0,
  2404. "z": -100
  2405. },
  2406. "_lrot": {
  2407. "__type__": "cc.Quat",
  2408. "x": 0,
  2409. "y": 0,
  2410. "z": 0,
  2411. "w": 1
  2412. },
  2413. "_lscale": {
  2414. "__type__": "cc.Vec3",
  2415. "x": 100,
  2416. "y": 100,
  2417. "z": 100
  2418. },
  2419. "_layer": 1073741824,
  2420. "_euler": {
  2421. "__type__": "cc.Vec3",
  2422. "x": 0,
  2423. "y": 0,
  2424. "z": 0
  2425. },
  2426. "_id": "41MwJgMnJHQrRGo41ypgSD"
  2427. },
  2428. {
  2429. "__type__": "cc.ModelComponent",
  2430. "_name": "Plane<ModelComponent>",
  2431. "_objFlags": 0,
  2432. "node": {
  2433. "__id__": 83
  2434. },
  2435. "_enabled": true,
  2436. "_materials": [
  2437. {
  2438. "__uuid__": "d3c7820c-2a98-4429-8bc7-b8453bc9ac41"
  2439. }
  2440. ],
  2441. "_visFlags": 0,
  2442. "lightmapSettings": {
  2443. "__id__": 85
  2444. },
  2445. "_mesh": {
  2446. "__uuid__": "1263d74c-8167-4928-91a6-4e2672411f47@2e76e"
  2447. },
  2448. "_shadowCastingMode": 0,
  2449. "_enableMorph": true,
  2450. "_id": "dc5n8lOoFFuapKAWLgaZqH"
  2451. },
  2452. {
  2453. "__type__": "cc.ModelLightmapSettings",
  2454. "texture": null,
  2455. "uvParam": {
  2456. "__type__": "cc.Vec4",
  2457. "x": 0,
  2458. "y": 0,
  2459. "z": 0,
  2460. "w": 0
  2461. },
  2462. "_bakeable": false,
  2463. "_castShadow": false,
  2464. "_receiveShadow": false,
  2465. "_recieveShadow": false,
  2466. "_lightmapSize": 64
  2467. },
  2468. {
  2469. "__type__": "cc.SceneGlobals",
  2470. "ambient": {
  2471. "__id__": 87
  2472. },
  2473. "planarShadows": {
  2474. "__id__": 88
  2475. },
  2476. "_skybox": {
  2477. "__id__": 89
  2478. }
  2479. },
  2480. {
  2481. "__type__": "cc.AmbientInfo",
  2482. "_skyColor": {
  2483. "__type__": "cc.Color",
  2484. "r": 51,
  2485. "g": 128,
  2486. "b": 204,
  2487. "a": 1
  2488. },
  2489. "_skyIllum": 20000,
  2490. "_groundAlbedo": {
  2491. "__type__": "cc.Color",
  2492. "r": 51,
  2493. "g": 51,
  2494. "b": 51,
  2495. "a": 255
  2496. }
  2497. },
  2498. {
  2499. "__type__": "cc.PlanarShadowInfo",
  2500. "_enabled": false,
  2501. "_normal": {
  2502. "__type__": "cc.Vec3",
  2503. "x": 0,
  2504. "y": 1,
  2505. "z": 0
  2506. },
  2507. "_distance": 0,
  2508. "_shadowColor": {
  2509. "__type__": "cc.Color",
  2510. "r": 0,
  2511. "g": 0,
  2512. "b": 0,
  2513. "a": 76
  2514. }
  2515. },
  2516. {
  2517. "__type__": "cc.SkyboxInfo",
  2518. "_envmap": null,
  2519. "_isRGBE": false,
  2520. "_enabled": false,
  2521. "_useIBL": false
  2522. }
  2523. ]