FightingScene.scene 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  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__": 5
  23. },
  24. {
  25. "__id__": 11
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [],
  30. "_prefab": null,
  31. "autoReleaseAssets": false,
  32. "_globals": {
  33. "__id__": 72
  34. },
  35. "_id": "c2b58d4e-131e-4f1f-afd3-c5565cf05d4e"
  36. },
  37. {
  38. "__type__": "cc.Node",
  39. "_name": "Main Light",
  40. "_objFlags": 0,
  41. "_parent": {
  42. "__id__": 1
  43. },
  44. "_children": [],
  45. "_active": true,
  46. "_components": [
  47. {
  48. "__id__": 3
  49. }
  50. ],
  51. "_prefab": null,
  52. "_lpos": {
  53. "__type__": "cc.Vec3",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0
  57. },
  58. "_lrot": {
  59. "__type__": "cc.Quat",
  60. "x": -0.24999999999999997,
  61. "y": -0.24999999999999997,
  62. "z": -0.06698729810778066,
  63. "w": 0.9330127018922194
  64. },
  65. "_lscale": {
  66. "__type__": "cc.Vec3",
  67. "x": 1,
  68. "y": 1,
  69. "z": 1
  70. },
  71. "_layer": 1073741824,
  72. "_euler": {
  73. "__type__": "cc.Vec3",
  74. "x": -30,
  75. "y": -30,
  76. "z": 0
  77. },
  78. "_id": "c0y6F5f+pAvI805TdmxIjx"
  79. },
  80. {
  81. "__type__": "cc.DirectionalLightComponent",
  82. "_name": "",
  83. "_objFlags": 0,
  84. "node": {
  85. "__id__": 2
  86. },
  87. "_enabled": true,
  88. "_color": {
  89. "__type__": "cc.Color",
  90. "r": 255,
  91. "g": 255,
  92. "b": 255,
  93. "a": 255
  94. },
  95. "_useColorTemperature": false,
  96. "_colorTemperature": 6550,
  97. "_staticSettings": {
  98. "__id__": 4
  99. },
  100. "_illuminance": 65000,
  101. "_id": "597uMYCbhEtJQc0ffJlcgA"
  102. },
  103. {
  104. "__type__": "cc.StaticLightSettings",
  105. "_editorOnly": false,
  106. "_bakeable": false,
  107. "_castShadow": false
  108. },
  109. {
  110. "__type__": "cc.Node",
  111. "_name": "Camera",
  112. "_objFlags": 0,
  113. "_parent": {
  114. "__id__": 1
  115. },
  116. "_children": [],
  117. "_active": true,
  118. "_components": [
  119. {
  120. "__id__": 6
  121. },
  122. {
  123. "__id__": 7
  124. },
  125. {
  126. "__id__": 8
  127. }
  128. ],
  129. "_prefab": null,
  130. "_lpos": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0.5,
  134. "z": 0.189
  135. },
  136. "_lrot": {
  137. "__type__": "cc.Quat",
  138. "x": 0,
  139. "y": 0,
  140. "z": 0,
  141. "w": 1
  142. },
  143. "_lscale": {
  144. "__type__": "cc.Vec3",
  145. "x": 1,
  146. "y": 1,
  147. "z": 1
  148. },
  149. "_layer": 1073741824,
  150. "_euler": {
  151. "__type__": "cc.Vec3",
  152. "x": 0,
  153. "y": 0,
  154. "z": 0
  155. },
  156. "_id": "c9DMICJLFO5IeO07EPon7U"
  157. },
  158. {
  159. "__type__": "cc.CameraComponent",
  160. "_name": "",
  161. "_objFlags": 0,
  162. "node": {
  163. "__id__": 5
  164. },
  165. "_enabled": true,
  166. "_projection": 1,
  167. "_priority": 0,
  168. "_fov": 45,
  169. "_fovAxis": 0,
  170. "_orthoHeight": 10,
  171. "_near": 1,
  172. "_far": 1000,
  173. "_color": {
  174. "__type__": "cc.Color",
  175. "r": 51,
  176. "g": 51,
  177. "b": 51,
  178. "a": 255
  179. },
  180. "_depth": 1,
  181. "_stencil": 0,
  182. "_clearFlags": 7,
  183. "_rect": {
  184. "__type__": "cc.Rect",
  185. "x": 0,
  186. "y": 0,
  187. "width": 1,
  188. "height": 1
  189. },
  190. "_aperture": 19,
  191. "_shutter": 7,
  192. "_iso": 0,
  193. "_screenScale": 1,
  194. "_visibility": "1073741824",
  195. "_targetTexture": null,
  196. "_id": "7dWQTpwS5LrIHnc1zAPUtf"
  197. },
  198. {
  199. "__type__": "db2b6G7KQxN8anKyUBMCEyP",
  200. "_name": "",
  201. "_objFlags": 0,
  202. "node": {
  203. "__id__": 5
  204. },
  205. "_enabled": true,
  206. "_id": "49OdD4o5RM8pQwE/GGUy1u"
  207. },
  208. {
  209. "__type__": "0d872YkVUBI8KRfzuG/g0Cm",
  210. "_name": "",
  211. "_objFlags": 0,
  212. "node": {
  213. "__id__": 5
  214. },
  215. "_enabled": true,
  216. "leftHand": {
  217. "__id__": 9
  218. },
  219. "rightHand": {
  220. "__id__": 41
  221. },
  222. "_id": "5fQvSASkJP/6MHZwcKcaeO"
  223. },
  224. {
  225. "__type__": "cc.AnimationComponent",
  226. "_name": "Hand_L<AnimationComponent>",
  227. "_objFlags": 0,
  228. "node": {
  229. "__id__": 10
  230. },
  231. "_enabled": true,
  232. "playOnLoad": false,
  233. "_clips": [
  234. {
  235. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
  236. },
  237. {
  238. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@88ed1"
  239. },
  240. {
  241. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@50b81"
  242. }
  243. ],
  244. "_defaultClip": {
  245. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
  246. },
  247. "_id": "7e74/BZrFNF4zBjWTKSG1a"
  248. },
  249. {
  250. "__type__": "cc.Node",
  251. "_name": "Hand_L",
  252. "_objFlags": 0,
  253. "_parent": {
  254. "__id__": 11
  255. },
  256. "_children": [
  257. {
  258. "__id__": 43
  259. }
  260. ],
  261. "_active": true,
  262. "_components": [
  263. {
  264. "__id__": 9
  265. }
  266. ],
  267. "_prefab": {
  268. "__id__": 71
  269. },
  270. "_lpos": {
  271. "__type__": "cc.Vec3",
  272. "x": -0.3,
  273. "y": 0,
  274. "z": 0
  275. },
  276. "_lrot": {
  277. "__type__": "cc.Quat",
  278. "x": 0,
  279. "y": 1,
  280. "z": 0,
  281. "w": 6.123233995736766e-17
  282. },
  283. "_lscale": {
  284. "__type__": "cc.Vec3",
  285. "x": -1,
  286. "y": 1,
  287. "z": 1
  288. },
  289. "_layer": 1073741824,
  290. "_euler": {
  291. "__type__": "cc.Vec3",
  292. "x": 0,
  293. "y": 180,
  294. "z": 0
  295. },
  296. "_id": "51zEATXadAiq67b1YUUwNC"
  297. },
  298. {
  299. "__type__": "cc.Node",
  300. "_name": "HandGroup",
  301. "_objFlags": 0,
  302. "_parent": {
  303. "__id__": 1
  304. },
  305. "_children": [
  306. {
  307. "__id__": 10
  308. },
  309. {
  310. "__id__": 12
  311. }
  312. ],
  313. "_active": true,
  314. "_components": [],
  315. "_prefab": null,
  316. "_lpos": {
  317. "__type__": "cc.Vec3",
  318. "x": 0,
  319. "y": 0,
  320. "z": -1
  321. },
  322. "_lrot": {
  323. "__type__": "cc.Quat",
  324. "x": 0,
  325. "y": 0,
  326. "z": 0,
  327. "w": 1
  328. },
  329. "_lscale": {
  330. "__type__": "cc.Vec3",
  331. "x": 1,
  332. "y": 1,
  333. "z": 1
  334. },
  335. "_layer": 1073741824,
  336. "_euler": {
  337. "__type__": "cc.Vec3",
  338. "x": 0,
  339. "y": 0,
  340. "z": 0
  341. },
  342. "_id": "a8ZF9dEIJI+KXLJoRrVi2f"
  343. },
  344. {
  345. "__type__": "cc.Node",
  346. "_name": "Hand_R",
  347. "_objFlags": 0,
  348. "_parent": {
  349. "__id__": 11
  350. },
  351. "_children": [
  352. {
  353. "__id__": 13
  354. }
  355. ],
  356. "_active": true,
  357. "_components": [
  358. {
  359. "__id__": 41
  360. }
  361. ],
  362. "_prefab": {
  363. "__id__": 42
  364. },
  365. "_lpos": {
  366. "__type__": "cc.Vec3",
  367. "x": 0.3,
  368. "y": 0,
  369. "z": 0
  370. },
  371. "_lrot": {
  372. "__type__": "cc.Quat",
  373. "x": 0,
  374. "y": 1,
  375. "z": 0,
  376. "w": 6.123233995736766e-17
  377. },
  378. "_lscale": {
  379. "__type__": "cc.Vec3",
  380. "x": 1,
  381. "y": 1,
  382. "z": 1
  383. },
  384. "_layer": 1073741824,
  385. "_euler": {
  386. "__type__": "cc.Vec3",
  387. "x": 0,
  388. "y": 180,
  389. "z": 0
  390. },
  391. "_id": "3cTPdekjVLnKtwyu1nVCDg"
  392. },
  393. {
  394. "__type__": "cc.Node",
  395. "_name": "RootNode",
  396. "_objFlags": 0,
  397. "_parent": {
  398. "__id__": 12
  399. },
  400. "_children": [
  401. {
  402. "__id__": 14
  403. }
  404. ],
  405. "_active": true,
  406. "_components": [],
  407. "_prefab": {
  408. "__id__": 40
  409. },
  410. "_lpos": {
  411. "__type__": "cc.Vec3",
  412. "x": 0,
  413. "y": 0,
  414. "z": 0
  415. },
  416. "_lrot": {
  417. "__type__": "cc.Quat",
  418. "x": 0,
  419. "y": 0,
  420. "z": 0,
  421. "w": 1
  422. },
  423. "_lscale": {
  424. "__type__": "cc.Vec3",
  425. "x": 1,
  426. "y": 1,
  427. "z": 1
  428. },
  429. "_layer": 1073741824,
  430. "_euler": {
  431. "__type__": "cc.Vec3",
  432. "x": 0,
  433. "y": 0,
  434. "z": 0
  435. },
  436. "_id": "cfZ76rpMVI5a5vmWo7moTc"
  437. },
  438. {
  439. "__type__": "cc.Node",
  440. "_name": "Arm",
  441. "_objFlags": 0,
  442. "_parent": {
  443. "__id__": 13
  444. },
  445. "_children": [
  446. {
  447. "__id__": 15
  448. }
  449. ],
  450. "_active": true,
  451. "_components": [],
  452. "_prefab": {
  453. "__id__": 39
  454. },
  455. "_lpos": {
  456. "__type__": "cc.Vec3",
  457. "x": 0,
  458. "y": 0,
  459. "z": 0
  460. },
  461. "_lrot": {
  462. "__type__": "cc.Quat",
  463. "x": -0.7071068407911907,
  464. "y": 0,
  465. "z": 0,
  466. "w": 0.7071067215818994
  467. },
  468. "_lscale": {
  469. "__type__": "cc.Vec3",
  470. "x": 2.49999737739563,
  471. "y": 2.49999737739563,
  472. "z": 2.49999737739563
  473. },
  474. "_layer": 1073741824,
  475. "_euler": {
  476. "__type__": "cc.Vec3",
  477. "x": -90.0000096593463,
  478. "y": 0,
  479. "z": 0
  480. },
  481. "_id": "08OqPnYD9DOp6qDx0Z/XCJ"
  482. },
  483. {
  484. "__type__": "cc.Node",
  485. "_name": "upper_arm_R",
  486. "_objFlags": 0,
  487. "_parent": {
  488. "__id__": 14
  489. },
  490. "_children": [
  491. {
  492. "__id__": 16
  493. },
  494. {
  495. "__id__": 34
  496. }
  497. ],
  498. "_active": true,
  499. "_components": [],
  500. "_prefab": {
  501. "__id__": 38
  502. },
  503. "_lpos": {
  504. "__type__": "cc.Vec3",
  505. "x": -0.00187119445763528,
  506. "y": 0.0199693888425827,
  507. "z": 0.0198789201676846
  508. },
  509. "_lrot": {
  510. "__type__": "cc.Quat",
  511. "x": 0.7128733386984368,
  512. "y": -0.12168298645414762,
  513. "z": 0.6820341935561695,
  514. "w": -0.10878516719079441
  515. },
  516. "_lscale": {
  517. "__type__": "cc.Vec3",
  518. "x": 1,
  519. "y": 1,
  520. "z": 1
  521. },
  522. "_layer": 1073741824,
  523. "_euler": {
  524. "__type__": "cc.Vec3",
  525. "x": 179.34133534803925,
  526. "y": -87.57588334232474,
  527. "z": -18.776628506046173
  528. },
  529. "_id": "44cbBp0RdCr7wYvqPSj8dT"
  530. },
  531. {
  532. "__type__": "cc.Node",
  533. "_name": "lower_arm_R",
  534. "_objFlags": 0,
  535. "_parent": {
  536. "__id__": 15
  537. },
  538. "_children": [
  539. {
  540. "__id__": 17
  541. },
  542. {
  543. "__id__": 29
  544. }
  545. ],
  546. "_active": true,
  547. "_components": [],
  548. "_prefab": {
  549. "__id__": 33
  550. },
  551. "_lpos": {
  552. "__type__": "cc.Vec3",
  553. "x": -4.76837147544984e-9,
  554. "y": 0.122766919434071,
  555. "z": 1.19209286886246e-9
  556. },
  557. "_lrot": {
  558. "__type__": "cc.Quat",
  559. "x": -0.466988449217709,
  560. "y": -0.8733058663251212,
  561. "z": -0.09971510723327488,
  562. "w": 0.09651709449017401
  563. },
  564. "_lscale": {
  565. "__type__": "cc.Vec3",
  566. "x": 1.00000011920929,
  567. "y": 1,
  568. "z": 1.00000023841858
  569. },
  570. "_layer": 1073741824,
  571. "_euler": {
  572. "__type__": "cc.Vec3",
  573. "x": -25.91506796552648,
  574. "y": -154.35835300351818,
  575. "z": 52.78760265566591
  576. },
  577. "_id": "cefsQSgPpOt6t4laCNMQee"
  578. },
  579. {
  580. "__type__": "cc.Node",
  581. "_name": "transform1",
  582. "_objFlags": 0,
  583. "_parent": {
  584. "__id__": 16
  585. },
  586. "_children": [
  587. {
  588. "__id__": 18
  589. }
  590. ],
  591. "_active": true,
  592. "_components": [],
  593. "_prefab": {
  594. "__id__": 28
  595. },
  596. "_lpos": {
  597. "__type__": "cc.Vec3",
  598. "x": -0.11739581823349,
  599. "y": 0.0252596475183964,
  600. "z": -0.094342976808548
  601. },
  602. "_lrot": {
  603. "__type__": "cc.Quat",
  604. "x": -0.5686733656216297,
  605. "y": 0.09836318228904112,
  606. "z": 0.7051433838438259,
  607. "w": 0.4119564246662747
  608. },
  609. "_lscale": {
  610. "__type__": "cc.Vec3",
  611. "x": 0.999999821186066,
  612. "y": 0.999999940395355,
  613. "z": 0.999999940395355
  614. },
  615. "_layer": 1073741824,
  616. "_euler": {
  617. "__type__": "cc.Vec3",
  618. "x": -136.55882415880845,
  619. "y": 90.89566604296236,
  620. "z": 27.976128283550537
  621. },
  622. "_id": "0bdz9HsSdAEZBRqRJUZb8f"
  623. },
  624. {
  625. "__type__": "cc.Node",
  626. "_name": "hand_R",
  627. "_objFlags": 0,
  628. "_parent": {
  629. "__id__": 17
  630. },
  631. "_children": [
  632. {
  633. "__id__": 19
  634. },
  635. {
  636. "__id__": 23
  637. }
  638. ],
  639. "_active": true,
  640. "_components": [],
  641. "_prefab": {
  642. "__id__": 27
  643. },
  644. "_lpos": {
  645. "__type__": "cc.Vec3",
  646. "x": -0.0479476489126682,
  647. "y": -0.163001760840416,
  648. "z": -0.00526508083567023
  649. },
  650. "_lrot": {
  651. "__type__": "cc.Quat",
  652. "x": -0.17887440785674327,
  653. "y": -0.08786853629725089,
  654. "z": -0.9795610561564843,
  655. "w": 0.027261764514996373
  656. },
  657. "_lscale": {
  658. "__type__": "cc.Vec3",
  659. "x": 0.99999988079071,
  660. "y": 0.999999940395355,
  661. "z": 0.999999940395355
  662. },
  663. "_layer": 1073741824,
  664. "_euler": {
  665. "__type__": "cc.Vec3",
  666. "x": -169.51710436825414,
  667. "y": -159.18734036749785,
  668. "z": -1.259133752988458
  669. },
  670. "_id": "87Kqx6YYBLy7EhHvcnPAzm"
  671. },
  672. {
  673. "__type__": "cc.Node",
  674. "_name": "transform2",
  675. "_objFlags": 0,
  676. "_parent": {
  677. "__id__": 18
  678. },
  679. "_children": [
  680. {
  681. "__id__": 20
  682. }
  683. ],
  684. "_active": true,
  685. "_components": [],
  686. "_prefab": {
  687. "__id__": 22
  688. },
  689. "_lpos": {
  690. "__type__": "cc.Vec3",
  691. "x": -0.0573748089373112,
  692. "y": -0.168648242950439,
  693. "z": -0.0279340911656618
  694. },
  695. "_lrot": {
  696. "__type__": "cc.Quat",
  697. "x": 0.1659847378211989,
  698. "y": 0.7220834621029274,
  699. "z": 0.6543067809145152,
  700. "w": 0.15141722827063853
  701. },
  702. "_lscale": {
  703. "__type__": "cc.Vec3",
  704. "x": 0.4000004529953,
  705. "y": 0.4000004529953,
  706. "z": 0.4000004529953
  707. },
  708. "_layer": 1073741824,
  709. "_euler": {
  710. "__type__": "cc.Vec3",
  711. "x": -84.34031666114561,
  712. "y": 179.90683531759714,
  713. "z": 25.967184866346347
  714. },
  715. "_id": "36XCgvbJ1OE4+P2eOF/MBp"
  716. },
  717. {
  718. "__type__": "cc.Node",
  719. "_name": "Guns",
  720. "_objFlags": 0,
  721. "_parent": {
  722. "__id__": 19
  723. },
  724. "_children": [],
  725. "_active": true,
  726. "_components": [],
  727. "_prefab": {
  728. "__id__": 21
  729. },
  730. "_lpos": {
  731. "__type__": "cc.Vec3",
  732. "x": 0.0926190093159676,
  733. "y": 0.115806952118874,
  734. "z": 0.477917075157166
  735. },
  736. "_lrot": {
  737. "__type__": "cc.Quat",
  738. "x": -1.9718089641021357e-18,
  739. "y": 0.2698576470782355,
  740. "z": 7.035765905900923e-18,
  741. "w": 0.9629002286391869
  742. },
  743. "_lscale": {
  744. "__type__": "cc.Vec3",
  745. "x": 1,
  746. "y": 1,
  747. "z": 1
  748. },
  749. "_layer": 1073741824,
  750. "_euler": {
  751. "__type__": "cc.Vec3",
  752. "x": -4.3513973432661813e-16,
  753. "y": 31.311592403165022,
  754. "z": 7.153530332193965e-16
  755. },
  756. "_id": "30H7zPBV1Avo/XVxYstUnH"
  757. },
  758. {
  759. "__type__": "cc.PrefabInfo",
  760. "root": {
  761. "__id__": 12
  762. },
  763. "asset": {
  764. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  765. },
  766. "fileId": "e4sq/IizxEi4tftrOUbqCo",
  767. "sync": false,
  768. "_synced": {
  769. "default": false,
  770. "serializable": false
  771. }
  772. },
  773. {
  774. "__type__": "cc.PrefabInfo",
  775. "root": {
  776. "__id__": 12
  777. },
  778. "asset": {
  779. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  780. },
  781. "fileId": "528r1dD1FPs6CQpz1Hiq+n",
  782. "sync": false,
  783. "_synced": {
  784. "default": false,
  785. "serializable": false
  786. }
  787. },
  788. {
  789. "__type__": "cc.Node",
  790. "_name": "polySurface1",
  791. "_objFlags": 0,
  792. "_parent": {
  793. "__id__": 18
  794. },
  795. "_children": [],
  796. "_active": true,
  797. "_components": [
  798. {
  799. "__id__": 24
  800. }
  801. ],
  802. "_prefab": {
  803. "__id__": 26
  804. },
  805. "_lpos": {
  806. "__type__": "cc.Vec3",
  807. "x": -0.123767487704754,
  808. "y": -0.172050505876541,
  809. "z": -0.00599880423396826
  810. },
  811. "_lrot": {
  812. "__type__": "cc.Quat",
  813. "x": 0.010300790094140965,
  814. "y": 0.04792535740088619,
  815. "z": 0.9732548721471967,
  816. "w": 0.22443709070289092
  817. },
  818. "_lscale": {
  819. "__type__": "cc.Vec3",
  820. "x": 1.00000011920929,
  821. "y": 1.00000011920929,
  822. "z": 1.00000011920929
  823. },
  824. "_layer": 1073741824,
  825. "_euler": {
  826. "__type__": "cc.Vec3",
  827. "x": -174.34031597717004,
  828. "y": 179.90683573579,
  829. "z": 25.967185849944748
  830. },
  831. "_id": "6du/AsCWlEz5iOmGcvui1A"
  832. },
  833. {
  834. "__type__": "cc.ModelComponent",
  835. "_name": "polySurface1<ModelComponent>",
  836. "_objFlags": 0,
  837. "node": {
  838. "__id__": 23
  839. },
  840. "_enabled": true,
  841. "_materials": [
  842. {
  843. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  844. }
  845. ],
  846. "_visFlags": 0,
  847. "lightmapSettings": {
  848. "__id__": 25
  849. },
  850. "_mesh": {
  851. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@01a55"
  852. },
  853. "_shadowCastingMode": 0,
  854. "_enableMorph": true,
  855. "_id": "efQqmidOtJTZMVBxfRmJ49"
  856. },
  857. {
  858. "__type__": "cc.ModelLightmapSettings",
  859. "texture": null,
  860. "uvParam": {
  861. "__type__": "cc.Vec4",
  862. "x": 0,
  863. "y": 0,
  864. "z": 0,
  865. "w": 0
  866. },
  867. "_bakeable": false,
  868. "_castShadow": false,
  869. "_receiveShadow": false,
  870. "_recieveShadow": false,
  871. "_lightmapSize": 64
  872. },
  873. {
  874. "__type__": "cc.PrefabInfo",
  875. "root": {
  876. "__id__": 12
  877. },
  878. "asset": {
  879. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  880. },
  881. "fileId": "e5eTdFC2tK17cxWv7fIMvG",
  882. "sync": false,
  883. "_synced": {
  884. "default": false,
  885. "serializable": false
  886. }
  887. },
  888. {
  889. "__type__": "cc.PrefabInfo",
  890. "root": {
  891. "__id__": 12
  892. },
  893. "asset": {
  894. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  895. },
  896. "fileId": "d7f5n52ilAgLHFjbo7GU7x",
  897. "sync": false,
  898. "_synced": {
  899. "default": false,
  900. "serializable": false
  901. }
  902. },
  903. {
  904. "__type__": "cc.PrefabInfo",
  905. "root": {
  906. "__id__": 12
  907. },
  908. "asset": {
  909. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  910. },
  911. "fileId": "adhPNh7JpAlINOWFI+skUq",
  912. "sync": false,
  913. "_synced": {
  914. "default": false,
  915. "serializable": false
  916. }
  917. },
  918. {
  919. "__type__": "cc.Node",
  920. "_name": "polySurface2",
  921. "_objFlags": 0,
  922. "_parent": {
  923. "__id__": 16
  924. },
  925. "_children": [],
  926. "_active": true,
  927. "_components": [
  928. {
  929. "__id__": 30
  930. }
  931. ],
  932. "_prefab": {
  933. "__id__": 32
  934. },
  935. "_lpos": {
  936. "__type__": "cc.Vec3",
  937. "x": -0.0919497013092041,
  938. "y": -0.0560492798686028,
  939. "z": -0.104193523526192
  940. },
  941. "_lrot": {
  942. "__type__": "cc.Quat",
  943. "x": -0.701581657074488,
  944. "y": 0.11412622036854045,
  945. "z": 0.6141477824497483,
  946. "w": 0.34290069348583063
  947. },
  948. "_lscale": {
  949. "__type__": "cc.Vec3",
  950. "x": 0.999999821186066,
  951. "y": 0.999999940395355,
  952. "z": 0.999999940395355
  953. },
  954. "_layer": 1073741824,
  955. "_euler": {
  956. "__type__": "cc.Vec3",
  957. "x": -139.93593026119527,
  958. "y": 76.8510659142986,
  959. "z": 15.132117863577827
  960. },
  961. "_id": "8b/1wgLi5DJYzqy1235p1a"
  962. },
  963. {
  964. "__type__": "cc.ModelComponent",
  965. "_name": "polySurface2<ModelComponent>",
  966. "_objFlags": 0,
  967. "node": {
  968. "__id__": 29
  969. },
  970. "_enabled": true,
  971. "_materials": [
  972. {
  973. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  974. }
  975. ],
  976. "_visFlags": 0,
  977. "lightmapSettings": {
  978. "__id__": 31
  979. },
  980. "_mesh": {
  981. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@db573"
  982. },
  983. "_shadowCastingMode": 0,
  984. "_enableMorph": true,
  985. "_id": "e6X6r5klVI6YqeskjnjW9F"
  986. },
  987. {
  988. "__type__": "cc.ModelLightmapSettings",
  989. "texture": null,
  990. "uvParam": {
  991. "__type__": "cc.Vec4",
  992. "x": 0,
  993. "y": 0,
  994. "z": 0,
  995. "w": 0
  996. },
  997. "_bakeable": false,
  998. "_castShadow": false,
  999. "_receiveShadow": false,
  1000. "_recieveShadow": false,
  1001. "_lightmapSize": 64
  1002. },
  1003. {
  1004. "__type__": "cc.PrefabInfo",
  1005. "root": {
  1006. "__id__": 12
  1007. },
  1008. "asset": {
  1009. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1010. },
  1011. "fileId": "b9kXX4S61GNY2W83CdRr0x",
  1012. "sync": false,
  1013. "_synced": {
  1014. "default": false,
  1015. "serializable": false
  1016. }
  1017. },
  1018. {
  1019. "__type__": "cc.PrefabInfo",
  1020. "root": {
  1021. "__id__": 12
  1022. },
  1023. "asset": {
  1024. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1025. },
  1026. "fileId": "7arMj8qwBBr5SEczRViSrp",
  1027. "sync": false,
  1028. "_synced": {
  1029. "default": false,
  1030. "serializable": false
  1031. }
  1032. },
  1033. {
  1034. "__type__": "cc.Node",
  1035. "_name": "polySurface3",
  1036. "_objFlags": 0,
  1037. "_parent": {
  1038. "__id__": 15
  1039. },
  1040. "_children": [],
  1041. "_active": true,
  1042. "_components": [
  1043. {
  1044. "__id__": 35
  1045. }
  1046. ],
  1047. "_prefab": {
  1048. "__id__": 37
  1049. },
  1050. "_lpos": {
  1051. "__type__": "cc.Vec3",
  1052. "x": -0.00320419040508568,
  1053. "y": -0.0145574426278472,
  1054. "z": 0.0598691701889038
  1055. },
  1056. "_lrot": {
  1057. "__type__": "cc.Quat",
  1058. "x": 0.7128733460429769,
  1059. "y": -0.12168294300433088,
  1060. "z": 0.6820342005829815,
  1061. "w": 0.10878512360809416
  1062. },
  1063. "_lscale": {
  1064. "__type__": "cc.Vec3",
  1065. "x": 1,
  1066. "y": 1,
  1067. "z": 1
  1068. },
  1069. "_layer": 1073741824,
  1070. "_euler": {
  1071. "__type__": "cc.Vec3",
  1072. "x": 161.26539208109207,
  1073. "y": -87.70424055853603,
  1074. "z": -1.4382008261836212
  1075. },
  1076. "_id": "69PYwGtQ1Kzq0LsX+zPNCz"
  1077. },
  1078. {
  1079. "__type__": "cc.ModelComponent",
  1080. "_name": "polySurface3<ModelComponent>",
  1081. "_objFlags": 0,
  1082. "node": {
  1083. "__id__": 34
  1084. },
  1085. "_enabled": true,
  1086. "_materials": [
  1087. {
  1088. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1089. }
  1090. ],
  1091. "_visFlags": 0,
  1092. "lightmapSettings": {
  1093. "__id__": 36
  1094. },
  1095. "_mesh": {
  1096. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@8c3a2"
  1097. },
  1098. "_shadowCastingMode": 0,
  1099. "_enableMorph": true,
  1100. "_id": "e76uhzjxFOfLH2D9ekmwXI"
  1101. },
  1102. {
  1103. "__type__": "cc.ModelLightmapSettings",
  1104. "texture": null,
  1105. "uvParam": {
  1106. "__type__": "cc.Vec4",
  1107. "x": 0,
  1108. "y": 0,
  1109. "z": 0,
  1110. "w": 0
  1111. },
  1112. "_bakeable": false,
  1113. "_castShadow": false,
  1114. "_receiveShadow": false,
  1115. "_recieveShadow": false,
  1116. "_lightmapSize": 64
  1117. },
  1118. {
  1119. "__type__": "cc.PrefabInfo",
  1120. "root": {
  1121. "__id__": 12
  1122. },
  1123. "asset": {
  1124. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1125. },
  1126. "fileId": "95PgMALmdAlpWpfofhEA3T",
  1127. "sync": false,
  1128. "_synced": {
  1129. "default": false,
  1130. "serializable": false
  1131. }
  1132. },
  1133. {
  1134. "__type__": "cc.PrefabInfo",
  1135. "root": {
  1136. "__id__": 12
  1137. },
  1138. "asset": {
  1139. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1140. },
  1141. "fileId": "c6UWH3katGaKwQMqMGsRFg",
  1142. "sync": false,
  1143. "_synced": {
  1144. "default": false,
  1145. "serializable": false
  1146. }
  1147. },
  1148. {
  1149. "__type__": "cc.PrefabInfo",
  1150. "root": {
  1151. "__id__": 12
  1152. },
  1153. "asset": {
  1154. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1155. },
  1156. "fileId": "37uWEpUAdL6o66ukhlR4+w",
  1157. "sync": false,
  1158. "_synced": {
  1159. "default": false,
  1160. "serializable": false
  1161. }
  1162. },
  1163. {
  1164. "__type__": "cc.PrefabInfo",
  1165. "root": {
  1166. "__id__": 12
  1167. },
  1168. "asset": {
  1169. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1170. },
  1171. "fileId": "7bleix3KpNipUBvwgUbDgb",
  1172. "sync": false,
  1173. "_synced": {
  1174. "default": false,
  1175. "serializable": false
  1176. }
  1177. },
  1178. {
  1179. "__type__": "cc.AnimationComponent",
  1180. "_name": "Hand_R<AnimationComponent>",
  1181. "_objFlags": 0,
  1182. "node": {
  1183. "__id__": 12
  1184. },
  1185. "_enabled": true,
  1186. "playOnLoad": true,
  1187. "_clips": [
  1188. {
  1189. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
  1190. },
  1191. {
  1192. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@88ed1"
  1193. },
  1194. {
  1195. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@50b81"
  1196. }
  1197. ],
  1198. "_defaultClip": {
  1199. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
  1200. },
  1201. "_id": "58I5CZbvpOvKEwOgiAiwgb"
  1202. },
  1203. {
  1204. "__type__": "cc.PrefabInfo",
  1205. "root": {
  1206. "__id__": 12
  1207. },
  1208. "asset": {
  1209. "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
  1210. },
  1211. "fileId": "9bHb4l/XtAn5Tv/diNe0aB",
  1212. "sync": false,
  1213. "_synced": {
  1214. "default": false,
  1215. "serializable": false
  1216. }
  1217. },
  1218. {
  1219. "__type__": "cc.Node",
  1220. "_name": "RootNode",
  1221. "_objFlags": 0,
  1222. "_parent": {
  1223. "__id__": 10
  1224. },
  1225. "_children": [
  1226. {
  1227. "__id__": 44
  1228. }
  1229. ],
  1230. "_active": true,
  1231. "_components": [],
  1232. "_prefab": {
  1233. "__id__": 70
  1234. },
  1235. "_lpos": {
  1236. "__type__": "cc.Vec3",
  1237. "x": 0,
  1238. "y": 0,
  1239. "z": 0
  1240. },
  1241. "_lrot": {
  1242. "__type__": "cc.Quat",
  1243. "x": 0,
  1244. "y": 0,
  1245. "z": 0,
  1246. "w": 1
  1247. },
  1248. "_lscale": {
  1249. "__type__": "cc.Vec3",
  1250. "x": 1,
  1251. "y": 1,
  1252. "z": 1
  1253. },
  1254. "_layer": 1073741824,
  1255. "_euler": {
  1256. "__type__": "cc.Vec3",
  1257. "x": 0,
  1258. "y": 0,
  1259. "z": 0
  1260. },
  1261. "_id": "155Qk8q65PX53i+cpLwS7O"
  1262. },
  1263. {
  1264. "__type__": "cc.Node",
  1265. "_name": "Arm",
  1266. "_objFlags": 0,
  1267. "_parent": {
  1268. "__id__": 43
  1269. },
  1270. "_children": [
  1271. {
  1272. "__id__": 45
  1273. }
  1274. ],
  1275. "_active": true,
  1276. "_components": [],
  1277. "_prefab": {
  1278. "__id__": 69
  1279. },
  1280. "_lpos": {
  1281. "__type__": "cc.Vec3",
  1282. "x": 0,
  1283. "y": 0,
  1284. "z": 0
  1285. },
  1286. "_lrot": {
  1287. "__type__": "cc.Quat",
  1288. "x": -0.7071068407911907,
  1289. "y": 0,
  1290. "z": 0,
  1291. "w": 0.7071067215818994
  1292. },
  1293. "_lscale": {
  1294. "__type__": "cc.Vec3",
  1295. "x": 2.49999737739563,
  1296. "y": 2.49999737739563,
  1297. "z": 2.49999737739563
  1298. },
  1299. "_layer": 1073741824,
  1300. "_euler": {
  1301. "__type__": "cc.Vec3",
  1302. "x": -90.0000096593463,
  1303. "y": 0,
  1304. "z": 0
  1305. },
  1306. "_id": "a6v+ZMR7ZFt76d3KPklie2"
  1307. },
  1308. {
  1309. "__type__": "cc.Node",
  1310. "_name": "upper_arm_R",
  1311. "_objFlags": 0,
  1312. "_parent": {
  1313. "__id__": 44
  1314. },
  1315. "_children": [
  1316. {
  1317. "__id__": 46
  1318. },
  1319. {
  1320. "__id__": 64
  1321. }
  1322. ],
  1323. "_active": true,
  1324. "_components": [],
  1325. "_prefab": {
  1326. "__id__": 68
  1327. },
  1328. "_lpos": {
  1329. "__type__": "cc.Vec3",
  1330. "x": -0.00187119445763528,
  1331. "y": 0.0199693888425827,
  1332. "z": 0.0198789201676846
  1333. },
  1334. "_lrot": {
  1335. "__type__": "cc.Quat",
  1336. "x": 0.7128733386984368,
  1337. "y": -0.12168298645414762,
  1338. "z": 0.6820341935561695,
  1339. "w": -0.10878516719079441
  1340. },
  1341. "_lscale": {
  1342. "__type__": "cc.Vec3",
  1343. "x": 1,
  1344. "y": 1,
  1345. "z": 1
  1346. },
  1347. "_layer": 1073741824,
  1348. "_euler": {
  1349. "__type__": "cc.Vec3",
  1350. "x": 179.34133534803925,
  1351. "y": -87.57588334232474,
  1352. "z": -18.776628506046173
  1353. },
  1354. "_id": "f4x2qVx3FJ/LPGFvjo7jcf"
  1355. },
  1356. {
  1357. "__type__": "cc.Node",
  1358. "_name": "lower_arm_R",
  1359. "_objFlags": 0,
  1360. "_parent": {
  1361. "__id__": 45
  1362. },
  1363. "_children": [
  1364. {
  1365. "__id__": 47
  1366. },
  1367. {
  1368. "__id__": 59
  1369. }
  1370. ],
  1371. "_active": true,
  1372. "_components": [],
  1373. "_prefab": {
  1374. "__id__": 63
  1375. },
  1376. "_lpos": {
  1377. "__type__": "cc.Vec3",
  1378. "x": -4.76837147544984e-9,
  1379. "y": 0.122766919434071,
  1380. "z": 1.19209286886246e-9
  1381. },
  1382. "_lrot": {
  1383. "__type__": "cc.Quat",
  1384. "x": -0.466988449217709,
  1385. "y": -0.8733058663251212,
  1386. "z": -0.09971510723327488,
  1387. "w": 0.09651709449017401
  1388. },
  1389. "_lscale": {
  1390. "__type__": "cc.Vec3",
  1391. "x": 1.00000011920929,
  1392. "y": 1,
  1393. "z": 1.00000023841858
  1394. },
  1395. "_layer": 1073741824,
  1396. "_euler": {
  1397. "__type__": "cc.Vec3",
  1398. "x": -25.91506796552648,
  1399. "y": -154.35835300351818,
  1400. "z": 52.78760265566591
  1401. },
  1402. "_id": "40jON0boJEYI6WM3t2UxNy"
  1403. },
  1404. {
  1405. "__type__": "cc.Node",
  1406. "_name": "transform1",
  1407. "_objFlags": 0,
  1408. "_parent": {
  1409. "__id__": 46
  1410. },
  1411. "_children": [
  1412. {
  1413. "__id__": 48
  1414. }
  1415. ],
  1416. "_active": true,
  1417. "_components": [],
  1418. "_prefab": {
  1419. "__id__": 58
  1420. },
  1421. "_lpos": {
  1422. "__type__": "cc.Vec3",
  1423. "x": -0.11739581823349,
  1424. "y": 0.0252596475183964,
  1425. "z": -0.094342976808548
  1426. },
  1427. "_lrot": {
  1428. "__type__": "cc.Quat",
  1429. "x": -0.5686733656216297,
  1430. "y": 0.09836318228904112,
  1431. "z": 0.7051433838438259,
  1432. "w": 0.4119564246662747
  1433. },
  1434. "_lscale": {
  1435. "__type__": "cc.Vec3",
  1436. "x": 0.999999821186066,
  1437. "y": 0.999999940395355,
  1438. "z": 0.999999940395355
  1439. },
  1440. "_layer": 1073741824,
  1441. "_euler": {
  1442. "__type__": "cc.Vec3",
  1443. "x": -136.55882415880845,
  1444. "y": 90.89566604296236,
  1445. "z": 27.976128283550537
  1446. },
  1447. "_id": "13+8G1UkhOBq2DuG0ubjRI"
  1448. },
  1449. {
  1450. "__type__": "cc.Node",
  1451. "_name": "hand_R",
  1452. "_objFlags": 0,
  1453. "_parent": {
  1454. "__id__": 47
  1455. },
  1456. "_children": [
  1457. {
  1458. "__id__": 49
  1459. },
  1460. {
  1461. "__id__": 53
  1462. }
  1463. ],
  1464. "_active": true,
  1465. "_components": [],
  1466. "_prefab": {
  1467. "__id__": 57
  1468. },
  1469. "_lpos": {
  1470. "__type__": "cc.Vec3",
  1471. "x": -0.0479476489126682,
  1472. "y": -0.163001760840416,
  1473. "z": -0.00526508083567023
  1474. },
  1475. "_lrot": {
  1476. "__type__": "cc.Quat",
  1477. "x": -0.17887440785674327,
  1478. "y": -0.08786853629725089,
  1479. "z": -0.9795610561564843,
  1480. "w": 0.027261764514996373
  1481. },
  1482. "_lscale": {
  1483. "__type__": "cc.Vec3",
  1484. "x": 0.99999988079071,
  1485. "y": 0.999999940395355,
  1486. "z": 0.999999940395355
  1487. },
  1488. "_layer": 1073741824,
  1489. "_euler": {
  1490. "__type__": "cc.Vec3",
  1491. "x": -169.51710436825414,
  1492. "y": -159.18734036749785,
  1493. "z": -1.259133752988458
  1494. },
  1495. "_id": "0cAjNwC4VOtqHdJjbNgeTg"
  1496. },
  1497. {
  1498. "__type__": "cc.Node",
  1499. "_name": "transform2",
  1500. "_objFlags": 0,
  1501. "_parent": {
  1502. "__id__": 48
  1503. },
  1504. "_children": [
  1505. {
  1506. "__id__": 50
  1507. }
  1508. ],
  1509. "_active": true,
  1510. "_components": [],
  1511. "_prefab": {
  1512. "__id__": 52
  1513. },
  1514. "_lpos": {
  1515. "__type__": "cc.Vec3",
  1516. "x": -0.0573748089373112,
  1517. "y": -0.168648242950439,
  1518. "z": -0.0279340911656618
  1519. },
  1520. "_lrot": {
  1521. "__type__": "cc.Quat",
  1522. "x": 0.1659847378211989,
  1523. "y": 0.7220834621029274,
  1524. "z": 0.6543067809145152,
  1525. "w": 0.15141722827063853
  1526. },
  1527. "_lscale": {
  1528. "__type__": "cc.Vec3",
  1529. "x": 0.4000004529953,
  1530. "y": 0.4000004529953,
  1531. "z": 0.4000004529953
  1532. },
  1533. "_layer": 1073741824,
  1534. "_euler": {
  1535. "__type__": "cc.Vec3",
  1536. "x": -84.34031666114561,
  1537. "y": 179.90683531759714,
  1538. "z": 25.967184866346347
  1539. },
  1540. "_id": "3dfsSGTFpBfJP0sX6bKLFA"
  1541. },
  1542. {
  1543. "__type__": "cc.Node",
  1544. "_name": "Guns",
  1545. "_objFlags": 0,
  1546. "_parent": {
  1547. "__id__": 49
  1548. },
  1549. "_children": [],
  1550. "_active": true,
  1551. "_components": [],
  1552. "_prefab": {
  1553. "__id__": 51
  1554. },
  1555. "_lpos": {
  1556. "__type__": "cc.Vec3",
  1557. "x": 0.0926190093159676,
  1558. "y": 0.115806952118874,
  1559. "z": 0.477917075157166
  1560. },
  1561. "_lrot": {
  1562. "__type__": "cc.Quat",
  1563. "x": -1.9718089641021357e-18,
  1564. "y": 0.2698576470782355,
  1565. "z": 7.035765905900923e-18,
  1566. "w": 0.9629002286391869
  1567. },
  1568. "_lscale": {
  1569. "__type__": "cc.Vec3",
  1570. "x": 1,
  1571. "y": 1,
  1572. "z": 1
  1573. },
  1574. "_layer": 1073741824,
  1575. "_euler": {
  1576. "__type__": "cc.Vec3",
  1577. "x": -4.3513973432661813e-16,
  1578. "y": 31.311592403165022,
  1579. "z": 7.153530332193965e-16
  1580. },
  1581. "_id": "36af4GqR9FULJRRgX2mkym"
  1582. },
  1583. {
  1584. "__type__": "cc.PrefabInfo",
  1585. "root": {
  1586. "__id__": 10
  1587. },
  1588. "asset": {
  1589. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1590. },
  1591. "fileId": "f8Bk5vekFAMKJwTjncsZBK",
  1592. "sync": false,
  1593. "_synced": {
  1594. "default": false,
  1595. "serializable": false
  1596. }
  1597. },
  1598. {
  1599. "__type__": "cc.PrefabInfo",
  1600. "root": {
  1601. "__id__": 10
  1602. },
  1603. "asset": {
  1604. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1605. },
  1606. "fileId": "cer9nEI/1Pg53NjzIE+vwW",
  1607. "sync": false,
  1608. "_synced": {
  1609. "default": false,
  1610. "serializable": false
  1611. }
  1612. },
  1613. {
  1614. "__type__": "cc.Node",
  1615. "_name": "polySurface1",
  1616. "_objFlags": 0,
  1617. "_parent": {
  1618. "__id__": 48
  1619. },
  1620. "_children": [],
  1621. "_active": true,
  1622. "_components": [
  1623. {
  1624. "__id__": 54
  1625. }
  1626. ],
  1627. "_prefab": {
  1628. "__id__": 56
  1629. },
  1630. "_lpos": {
  1631. "__type__": "cc.Vec3",
  1632. "x": -0.123767487704754,
  1633. "y": -0.172050505876541,
  1634. "z": -0.00599880423396826
  1635. },
  1636. "_lrot": {
  1637. "__type__": "cc.Quat",
  1638. "x": 0.010300790094140965,
  1639. "y": 0.04792535740088619,
  1640. "z": 0.9732548721471967,
  1641. "w": 0.22443709070289092
  1642. },
  1643. "_lscale": {
  1644. "__type__": "cc.Vec3",
  1645. "x": 1.00000011920929,
  1646. "y": 1.00000011920929,
  1647. "z": 1.00000011920929
  1648. },
  1649. "_layer": 1073741824,
  1650. "_euler": {
  1651. "__type__": "cc.Vec3",
  1652. "x": -174.34031597717004,
  1653. "y": 179.90683573579,
  1654. "z": 25.967185849944748
  1655. },
  1656. "_id": "d8Qb4q3AtI85eBP59erzxl"
  1657. },
  1658. {
  1659. "__type__": "cc.ModelComponent",
  1660. "_name": "polySurface1<ModelComponent>",
  1661. "_objFlags": 0,
  1662. "node": {
  1663. "__id__": 53
  1664. },
  1665. "_enabled": true,
  1666. "_materials": [
  1667. {
  1668. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1669. }
  1670. ],
  1671. "_visFlags": 0,
  1672. "lightmapSettings": {
  1673. "__id__": 55
  1674. },
  1675. "_mesh": {
  1676. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@01a55"
  1677. },
  1678. "_shadowCastingMode": 0,
  1679. "_enableMorph": true,
  1680. "_id": "f9yHyedL1FoqkMx/17ei2Q"
  1681. },
  1682. {
  1683. "__type__": "cc.ModelLightmapSettings",
  1684. "texture": null,
  1685. "uvParam": {
  1686. "__type__": "cc.Vec4",
  1687. "x": 0,
  1688. "y": 0,
  1689. "z": 0,
  1690. "w": 0
  1691. },
  1692. "_bakeable": false,
  1693. "_castShadow": false,
  1694. "_receiveShadow": false,
  1695. "_recieveShadow": false,
  1696. "_lightmapSize": 64
  1697. },
  1698. {
  1699. "__type__": "cc.PrefabInfo",
  1700. "root": {
  1701. "__id__": 10
  1702. },
  1703. "asset": {
  1704. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1705. },
  1706. "fileId": "68KfresDtGSo1i2hZTxgrx",
  1707. "sync": false,
  1708. "_synced": {
  1709. "default": false,
  1710. "serializable": false
  1711. }
  1712. },
  1713. {
  1714. "__type__": "cc.PrefabInfo",
  1715. "root": {
  1716. "__id__": 10
  1717. },
  1718. "asset": {
  1719. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1720. },
  1721. "fileId": "c8t9/vPihMzJ0+hiyEL+V1",
  1722. "sync": false,
  1723. "_synced": {
  1724. "default": false,
  1725. "serializable": false
  1726. }
  1727. },
  1728. {
  1729. "__type__": "cc.PrefabInfo",
  1730. "root": {
  1731. "__id__": 10
  1732. },
  1733. "asset": {
  1734. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1735. },
  1736. "fileId": "86g6sB3rZCS4r4TiFhHbJE",
  1737. "sync": false,
  1738. "_synced": {
  1739. "default": false,
  1740. "serializable": false
  1741. }
  1742. },
  1743. {
  1744. "__type__": "cc.Node",
  1745. "_name": "polySurface2",
  1746. "_objFlags": 0,
  1747. "_parent": {
  1748. "__id__": 46
  1749. },
  1750. "_children": [],
  1751. "_active": true,
  1752. "_components": [
  1753. {
  1754. "__id__": 60
  1755. }
  1756. ],
  1757. "_prefab": {
  1758. "__id__": 62
  1759. },
  1760. "_lpos": {
  1761. "__type__": "cc.Vec3",
  1762. "x": -0.0919497013092041,
  1763. "y": -0.0560492798686028,
  1764. "z": -0.104193523526192
  1765. },
  1766. "_lrot": {
  1767. "__type__": "cc.Quat",
  1768. "x": -0.701581657074488,
  1769. "y": 0.11412622036854045,
  1770. "z": 0.6141477824497483,
  1771. "w": 0.34290069348583063
  1772. },
  1773. "_lscale": {
  1774. "__type__": "cc.Vec3",
  1775. "x": 0.999999821186066,
  1776. "y": 0.999999940395355,
  1777. "z": 0.999999940395355
  1778. },
  1779. "_layer": 1073741824,
  1780. "_euler": {
  1781. "__type__": "cc.Vec3",
  1782. "x": -139.93593026119527,
  1783. "y": 76.8510659142986,
  1784. "z": 15.132117863577827
  1785. },
  1786. "_id": "9aqltNvOxPTYVtEJj7v8ne"
  1787. },
  1788. {
  1789. "__type__": "cc.ModelComponent",
  1790. "_name": "polySurface2<ModelComponent>",
  1791. "_objFlags": 0,
  1792. "node": {
  1793. "__id__": 59
  1794. },
  1795. "_enabled": true,
  1796. "_materials": [
  1797. {
  1798. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1799. }
  1800. ],
  1801. "_visFlags": 0,
  1802. "lightmapSettings": {
  1803. "__id__": 61
  1804. },
  1805. "_mesh": {
  1806. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@db573"
  1807. },
  1808. "_shadowCastingMode": 0,
  1809. "_enableMorph": true,
  1810. "_id": "02+LSAWfNMYKsKsl4E1qKv"
  1811. },
  1812. {
  1813. "__type__": "cc.ModelLightmapSettings",
  1814. "texture": null,
  1815. "uvParam": {
  1816. "__type__": "cc.Vec4",
  1817. "x": 0,
  1818. "y": 0,
  1819. "z": 0,
  1820. "w": 0
  1821. },
  1822. "_bakeable": false,
  1823. "_castShadow": false,
  1824. "_receiveShadow": false,
  1825. "_recieveShadow": false,
  1826. "_lightmapSize": 64
  1827. },
  1828. {
  1829. "__type__": "cc.PrefabInfo",
  1830. "root": {
  1831. "__id__": 10
  1832. },
  1833. "asset": {
  1834. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1835. },
  1836. "fileId": "254fdvz51DH5+sRN3qM/Vd",
  1837. "sync": false,
  1838. "_synced": {
  1839. "default": false,
  1840. "serializable": false
  1841. }
  1842. },
  1843. {
  1844. "__type__": "cc.PrefabInfo",
  1845. "root": {
  1846. "__id__": 10
  1847. },
  1848. "asset": {
  1849. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1850. },
  1851. "fileId": "52IX4cqXNGQZFa2Cb0z8XJ",
  1852. "sync": false,
  1853. "_synced": {
  1854. "default": false,
  1855. "serializable": false
  1856. }
  1857. },
  1858. {
  1859. "__type__": "cc.Node",
  1860. "_name": "polySurface3",
  1861. "_objFlags": 0,
  1862. "_parent": {
  1863. "__id__": 45
  1864. },
  1865. "_children": [],
  1866. "_active": true,
  1867. "_components": [
  1868. {
  1869. "__id__": 65
  1870. }
  1871. ],
  1872. "_prefab": {
  1873. "__id__": 67
  1874. },
  1875. "_lpos": {
  1876. "__type__": "cc.Vec3",
  1877. "x": -0.00320419040508568,
  1878. "y": -0.0145574426278472,
  1879. "z": 0.0598691701889038
  1880. },
  1881. "_lrot": {
  1882. "__type__": "cc.Quat",
  1883. "x": 0.7128733460429769,
  1884. "y": -0.12168294300433088,
  1885. "z": 0.6820342005829815,
  1886. "w": 0.10878512360809416
  1887. },
  1888. "_lscale": {
  1889. "__type__": "cc.Vec3",
  1890. "x": 1,
  1891. "y": 1,
  1892. "z": 1
  1893. },
  1894. "_layer": 1073741824,
  1895. "_euler": {
  1896. "__type__": "cc.Vec3",
  1897. "x": 161.26539208109207,
  1898. "y": -87.70424055853603,
  1899. "z": -1.4382008261836212
  1900. },
  1901. "_id": "30WEDtZbVJaJBh8/Fk3lQ0"
  1902. },
  1903. {
  1904. "__type__": "cc.ModelComponent",
  1905. "_name": "polySurface3<ModelComponent>",
  1906. "_objFlags": 0,
  1907. "node": {
  1908. "__id__": 64
  1909. },
  1910. "_enabled": true,
  1911. "_materials": [
  1912. {
  1913. "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
  1914. }
  1915. ],
  1916. "_visFlags": 0,
  1917. "lightmapSettings": {
  1918. "__id__": 66
  1919. },
  1920. "_mesh": {
  1921. "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@8c3a2"
  1922. },
  1923. "_shadowCastingMode": 0,
  1924. "_enableMorph": true,
  1925. "_id": "6bBHFNMq5HxZ5Rg4nyM6NM"
  1926. },
  1927. {
  1928. "__type__": "cc.ModelLightmapSettings",
  1929. "texture": null,
  1930. "uvParam": {
  1931. "__type__": "cc.Vec4",
  1932. "x": 0,
  1933. "y": 0,
  1934. "z": 0,
  1935. "w": 0
  1936. },
  1937. "_bakeable": false,
  1938. "_castShadow": false,
  1939. "_receiveShadow": false,
  1940. "_recieveShadow": false,
  1941. "_lightmapSize": 64
  1942. },
  1943. {
  1944. "__type__": "cc.PrefabInfo",
  1945. "root": {
  1946. "__id__": 10
  1947. },
  1948. "asset": {
  1949. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1950. },
  1951. "fileId": "afChOVxH5IlLoE7YFbdlGy",
  1952. "sync": false,
  1953. "_synced": {
  1954. "default": false,
  1955. "serializable": false
  1956. }
  1957. },
  1958. {
  1959. "__type__": "cc.PrefabInfo",
  1960. "root": {
  1961. "__id__": 10
  1962. },
  1963. "asset": {
  1964. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1965. },
  1966. "fileId": "68zkKsDEJPlI1FN/RM2ssV",
  1967. "sync": false,
  1968. "_synced": {
  1969. "default": false,
  1970. "serializable": false
  1971. }
  1972. },
  1973. {
  1974. "__type__": "cc.PrefabInfo",
  1975. "root": {
  1976. "__id__": 10
  1977. },
  1978. "asset": {
  1979. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1980. },
  1981. "fileId": "20ezGcx9NCTqJ8esh94DVz",
  1982. "sync": false,
  1983. "_synced": {
  1984. "default": false,
  1985. "serializable": false
  1986. }
  1987. },
  1988. {
  1989. "__type__": "cc.PrefabInfo",
  1990. "root": {
  1991. "__id__": 10
  1992. },
  1993. "asset": {
  1994. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  1995. },
  1996. "fileId": "c88CGHgEhNmr8BRczWULMw",
  1997. "sync": false,
  1998. "_synced": {
  1999. "default": false,
  2000. "serializable": false
  2001. }
  2002. },
  2003. {
  2004. "__type__": "cc.PrefabInfo",
  2005. "root": {
  2006. "__id__": 10
  2007. },
  2008. "asset": {
  2009. "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
  2010. },
  2011. "fileId": "3aC5oiKOBEBbDRpjrEmq//",
  2012. "sync": false,
  2013. "_synced": {
  2014. "default": false,
  2015. "serializable": false
  2016. }
  2017. },
  2018. {
  2019. "__type__": "cc.SceneGlobals",
  2020. "ambient": {
  2021. "__id__": 73
  2022. },
  2023. "planarShadows": {
  2024. "__id__": 74
  2025. },
  2026. "_skybox": {
  2027. "__id__": 75
  2028. }
  2029. },
  2030. {
  2031. "__type__": "cc.AmbientInfo",
  2032. "_skyColor": {
  2033. "__type__": "cc.Color",
  2034. "r": 51,
  2035. "g": 128,
  2036. "b": 204,
  2037. "a": 1
  2038. },
  2039. "_skyIllum": 20000,
  2040. "_groundAlbedo": {
  2041. "__type__": "cc.Color",
  2042. "r": 51,
  2043. "g": 51,
  2044. "b": 51,
  2045. "a": 255
  2046. }
  2047. },
  2048. {
  2049. "__type__": "cc.PlanarShadowInfo",
  2050. "_enabled": false,
  2051. "_normal": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 0,
  2054. "y": 1,
  2055. "z": 0
  2056. },
  2057. "_distance": 0,
  2058. "_shadowColor": {
  2059. "__type__": "cc.Color",
  2060. "r": 0,
  2061. "g": 0,
  2062. "b": 0,
  2063. "a": 76
  2064. }
  2065. },
  2066. {
  2067. "__type__": "cc.SkyboxInfo",
  2068. "_envmap": null,
  2069. "_isRGBE": false,
  2070. "_enabled": false,
  2071. "_useIBL": false
  2072. }
  2073. ]